Skip to content
This repository was archived by the owner on Sep 12, 2019. It is now read-only.

Commit 2574406

Browse files
authored
Merge pull request #83 from netlify/remove_shell_option
Remove shell option.
2 parents e7ef685 + 3340cb1 commit 2574406

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/commands/dev/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ function startDevServer(settings, log, error) {
100100
log(`Starting netlify dev with ${settings.type}`);
101101
const ps = execa(settings.command, settings.args, {
102102
env: settings.env,
103-
stdio: "inherit",
104-
shell: true
103+
stdio: "inherit"
105104
});
106105
ps.on("close", code => process.exit(code));
107106
ps.on("SIGINT", process.exit);

0 commit comments

Comments
 (0)