diff options
author | Jakob Unterwurzacher | 2017-02-19 20:43:07 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-02-20 21:26:42 +0100 |
commit | e406eb22ba6db2edbde8a17d9104b543c9efc0f3 (patch) | |
tree | eb9f4ed9afd274a45a6a0a3651045df290b2130a | |
parent | 166c62fd2137eb45fb8a5664f79cf8ff8f27d6e4 (diff) |
Get rid of remaining $GOPATH dependencies
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | tests/stress_tests/fsstress-gocryptfs.bash | 8 |
2 files changed, 9 insertions, 3 deletions
@@ -76,8 +76,8 @@ Use --- $ mkdir cipher plain - $ $GOPATH/bin/gocryptfs -init cipher - $ $GOPATH/bin/gocryptfs cipher plain + $ ./gocryptfs -init cipher + $ ./gocryptfs cipher plain See the [Quickstart](https://nuetzlich.net/gocryptfs/quickstart/) page for more info. diff --git a/tests/stress_tests/fsstress-gocryptfs.bash b/tests/stress_tests/fsstress-gocryptfs.bash index 432899a..dd7f1e7 100755 --- a/tests/stress_tests/fsstress-gocryptfs.bash +++ b/tests/stress_tests/fsstress-gocryptfs.bash @@ -22,8 +22,12 @@ source ../fuse-unmount.bash DIR=$(mktemp -d /tmp/fsstress.XXX) # Mountpoint MNT="$DIR.mnt" + +# Set the GOPATH variable to the default if it is empty +GOPATH=$(go env GOPATH) + # fsstress binary -FSSTRESS=~/src/xfstests/ltp/fsstress +FSSTRESS=$GOPATH/src/xfstests/ltp/fsstress if [ ! -x $FSSTRESS ] then @@ -37,6 +41,8 @@ mkdir -p $DIR $MNT rm -Rf $DIR/* rm -Rf $MNT/* + + # FS-specific compile and mount if [ $MYNAME = fsstress-loopback.bash ]; then echo "Recompile go-fuse loopback" |