t0060: export IPFS_PATH
IPFS_PATH should really be exported to make sure it is available to the ipfs binary. It looks like sharness tests fail otherwise on CircleCi. License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Christian Couder committed
Jun 12, 2015 at 15:33 UTC
1a7729718248277cf87e2adf2884486f0f455fd2
1 file changed
+2
-1
test/sharness/t0060-daemon.sh
+2
-1
@@ -10,7 +10,8 @@ test_description="Test daemon command"
10
11
# this needs to be in a different test than "ipfs daemon --init" below
12
test_expect_success "setup IPFS_PATH" '
13
- IPFS_PATH="$(pwd)/.ipfs"
13
+ IPFS_PATH="$(pwd)/.ipfs" &&
14
+ export IPFS_PATH
15
'
16
17
# NOTE: this should remove bootstrap peers (needs a flag)