Skip to content

Commit a920c79

Browse files
author
Cédric Belin
committed
Code formatting
1 parent 77015bf commit a920c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cakefile.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ npx = (command, args...) -> run "npm", "exec", "--", command, args...
4242
# Spawns a new process using the specified command.
4343
run = (command, args...) ->
4444
{status} = spawnSync command, args, shell: yes, stdio: "inherit"
45-
if status isnt 0
45+
unless status is 0
4646
console.error "Command failed:", command, args...
4747
process.exit status

0 commit comments

Comments
 (0)