From 42b80c19bab6b482b8788e61d67d05fbd67ba8e4 Mon Sep 17 00:00:00 2001 From: Denis Makogon Date: Wed, 31 May 2017 01:12:09 -0700 Subject: [PATCH] Propogating ${FN} outside of `test.sh` script --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 28383e08b..4a684e9db 100755 --- a/test.sh +++ b/test.sh @@ -5,7 +5,7 @@ set -ex go test -v $(go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v fn) cd fn && make build && make test # TODO: should we install fn here to use throughout? -FN="$(pwd)/fn" +export FN="$(pwd)/fn" cd .. # TODO: Test a bunch of the examples using fn test when ready