We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4476c7 commit 98cfe47Copy full SHA for 98cfe47
src/cakefile.coffee
@@ -39,4 +39,4 @@ npx = (command, args...) -> run "npm", "exec", "--", command, args...
39
# Spawns a new process using the specified command.
40
run = (command, args...) ->
41
{status} = spawnSync command, args, shell: on, stdio: "inherit"
42
- throw Error [command, args...].join " " unless status is 0
+ throw Error [command, args...].join " " if status isnt 0
0 commit comments