We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77015bf commit a920c79Copy full SHA for a920c79
src/cakefile.coffee
@@ -42,6 +42,6 @@ npx = (command, args...) -> run "npm", "exec", "--", command, args...
42
# Spawns a new process using the specified command.
43
run = (command, args...) ->
44
{status} = spawnSync command, args, shell: yes, stdio: "inherit"
45
- if status isnt 0
+ unless status is 0
46
console.error "Command failed:", command, args...
47
process.exit status
0 commit comments