From 417bb2ca3ad5a43f0359251a8c0df0730c15ae08 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 15 Jan 2016 17:04:10 -0500 Subject: [PATCH] Because I don't know how to write bash scripts and this works and is correct, going to keep it like this --- test/check-bin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/check-bin.sh b/test/check-bin.sh index 1e34b4a2aa7..6cde1e6c991 100755 --- a/test/check-bin.sh +++ b/test/check-bin.sh @@ -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