make: fix standalone sharness run

The comparison was wrong

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
Jakub Sztandera 2016-12-21 10:01:34 +01:00
parent f6d70ab541
commit a2e3aa5d78
No known key found for this signature in database
GPG Key ID: 9A9AF56F8B3879BA

View File

@ -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}