diff options
author | Jakob Unterwurzacher | 2017-03-05 13:32:28 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-03-05 13:32:28 +0100 |
commit | 6465fa42a695160f2ce1f0c3ace3799f1bbf6227 (patch) | |
tree | 8400f561475333897a4b4f35029df8a4cad2679e /test.bash | |
parent | 6cc0aebd718a606a8d63093fc754bc4ed25474a8 (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-x | test.bash | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |