From 6465fa42a695160f2ce1f0c3ace3799f1bbf6227 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 5 Mar 2017 13:32:28 +0100 Subject: test.bash: execute build-without-openssl.bash instead of sourcing it Sourcing the script breaks the "cd $(dirname $0)" logic in build-without-openssl.bash. --- test.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test.bash') diff --git a/test.bash b/test.bash index 664ca42..405d3b2 100755 --- a/test.bash +++ b/test.bash @@ -24,10 +24,10 @@ for i in $(mount | grep $TESTDIR | cut -f3 -d" "); do fuse-unmount $i done -source build-without-openssl.bash +./build-without-openssl.bash # Building with openssl is difficult on OSX, so only do it on Linux. if [[ $OSTYPE == linux* ]] ; then - source build.bash + ./build.bash fi if go tool | grep vet > /dev/null ; then -- cgit v1.2.3