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 6a7db68 commit e1abeed
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 @@ -141,7 +141,7 @@ const rhinoModel = {

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 @@ -143,7 +143,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 @@ -141,7 +141,7 @@ const rhinoModel = {

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 @@ -137,7 +137,7 @@ export { porcupineModel, rhinoModel };

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 e1abeed

Please sign in to comment.