Skip to content

Commit

Permalink
Quote command so paths with whitespace work (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlicanC authored and bestander committed Oct 11, 2016
1 parent 131bc3a commit e169535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export async function run(

if (cmds.length) {
for (const [stage, cmd] of cmds) {
await execCommand(stage, config, `${cmd} ${args.join(' ')}`, config.cwd);
await execCommand(stage, config, `"${cmd}" ${args.join(' ')}`, config.cwd);
}
} else {
let suggestion;
Expand Down

0 comments on commit e169535

Please sign in to comment.