aboutsummaryrefslogtreecommitdiff
path: root/test.bash
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-03-05 13:32:28 +0100
committerJakob Unterwurzacher2017-03-05 13:32:28 +0100
commit6465fa42a695160f2ce1f0c3ace3799f1bbf6227 (patch)
tree8400f561475333897a4b4f35029df8a4cad2679e /test.bash
parent6cc0aebd718a606a8d63093fc754bc4ed25474a8 (diff)
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.
Diffstat (limited to 'test.bash')
-rwxr-xr-xtest.bash4
1 files changed, 2 insertions, 2 deletions
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