From a2e3aa5d78766b41105df05c78c09cd54e1f08ab Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Wed, 21 Dec 2016 10:01:34 +0100 Subject: [PATCH] make: fix standalone sharness run The comparison was wrong License: MIT Signed-off-by: Jakub Sztandera --- test/sharness/lib/test-lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sharness/lib/test-lib.sh b/test/sharness/lib/test-lib.sh index 52fb2ec5d..d24ce431b 100644 --- a/test/sharness/lib/test-lib.sh +++ b/test/sharness/lib/test-lib.sh @@ -9,7 +9,7 @@ # use the ipfs tool to test against # add current directory to path, for ipfs tool. -if test "$MAKE_SKIP_PATH" -ne "1"; then +if test "$MAKE_SKIP_PATH" != "1"; then BIN=$(cd .. && echo `pwd`/bin) BIN2=$(cd ../.. && echo `pwd`/cmd/ipfs) PATH=${BIN2}:${BIN}:${PATH}