From 1a7729718248277cf87e2adf2884486f0f455fd2 Mon Sep 17 00:00:00 2001
From: Christian Couder <chriscool@tuxfamily.org>
Date: Fri, 12 Jun 2015 15:33:06 +0200
Subject: [PATCH] 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>
---
 test/sharness/t0060-daemon.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/sharness/t0060-daemon.sh b/test/sharness/t0060-daemon.sh
index 91e59e749..e0aff7b5e 100755
--- a/test/sharness/t0060-daemon.sh
+++ b/test/sharness/t0060-daemon.sh
@@ -10,7 +10,8 @@ test_description="Test daemon command"
 
 # this needs to be in a different test than "ipfs daemon --init" below
 test_expect_success "setup IPFS_PATH" '
-  IPFS_PATH="$(pwd)/.ipfs"
+  IPFS_PATH="$(pwd)/.ipfs" &&
+  export IPFS_PATH
 '
 
 # NOTE: this should remove bootstrap peers (needs a flag)
-- 
GitLab