Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laves committed Aug 19, 2024
1 parent 22abc73 commit 8c7ef91
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo/angular/scripts/run_demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ fs.writeFileSync(

const command = (process.platform === "win32") ? "npx.cmd" : "npx";

child_process.execSync(`${command} ng ${args}`, {
child_process.execSync(`${command} ng ${args.join(" ")}`, {
shell: true,
stdio: 'inherit'
});
2 changes: 1 addition & 1 deletion demo/react-native/scripts/run_demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fs.writeFileSync(

const command = process.platform === 'win32' ? 'npx.cmd' : 'npx';

child_process.execSync(`${command} react-native ${args}`, {
child_process.execSync(`${command} react-native ${args.join(" ")}`, {
shell: true,
stdio: 'inherit'
});
2 changes: 1 addition & 1 deletion demo/react/scripts/run_demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ fs.writeFileSync(

const command = (process.platform === "win32") ? "npx.cmd" : "npx";

child_process.execSync(`${command} react-scripts ${args}`, {
child_process.execSync(`${command} react-scripts ${args.join(" ")}`, {
shell: true,
stdio: 'inherit'
});
2 changes: 1 addition & 1 deletion demo/vue/scripts/run_demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default porcupineModel;

const command = (process.platform === "win32") ? "npx.cmd" : "npx";

child_process.execSync(`${command} vite ${args}`, {
child_process.execSync(`${command} vite ${args.join(" ")}`, {
shell: true,
stdio: 'inherit'
});

0 comments on commit 8c7ef91

Please sign in to comment.