make: fix standalone sharness run
The comparison was wrong License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
Jakub Sztandera committed
Dec 21, 2016 at 10:01 UTC
a2e3aa5d78766b41105df05c78c09cd54e1f08ab
1 file changed
+1
-1
test/sharness/lib/test-lib.sh
+1
-1
@@ -9,7 +9,7 @@
9
# use the ipfs tool to test against
10
11
# add current directory to path, for ipfs tool.
12
-if test "$MAKE_SKIP_PATH" -ne "1"; then
12
+if test "$MAKE_SKIP_PATH" != "1"; then
13
BIN=$(cd .. && echo `pwd`/bin)
14
BIN2=$(cd ../.. && echo `pwd`/cmd/ipfs)
15
PATH=${BIN2}:${BIN}:${PATH}