Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Because I don't know how to write bash scripts and this works and is …
Browse files Browse the repository at this point in the history
…correct, going to keep it like this
  • Loading branch information
Jason Killian committed Jan 15, 2016
1 parent 579a555 commit 417bb2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/check-bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ expectOut () {
nodeV=`node -v`

# if Node 0.10.*, node will sometimes exit with status 8 when an error is thrown
if [[ $expect != $actual || ( $nodeV == v0.10.* && $expect == 1 && $actual == 8 ) ]] ; then
if [[ $expect != $actual || $nodeV == v0.10.* && $expect == 1 && $actual == 8 ]] ; then
echo "$msg: expected $expect got $actual"
num_failures=$(expr $num_failures + 1)
fi
Expand Down

0 comments on commit 417bb2c

Please sign in to comment.