Skip to content

Commit

Permalink
fix spawn on Windows (sveltejs#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conduitry committed Oct 23, 2019
1 parent 66cb32c commit 724510f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup_start_dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
writeBundle() {
if (!running_dev_server) {
running_dev_server = true;
child_process.spawn('npm', ['run', 'start:dev'], { stdio: ['ignore', 'inherit', 'inherit'] });
child_process.spawn('npm', ['run', 'start:dev'], { stdio: ['ignore', 'inherit', 'inherit'], shell: true });
}
}
};

0 comments on commit 724510f

Please sign in to comment.