benchmark.bash: drop hardcoded encfs path

This commit is contained in:
Jakob Unterwurzacher 2019-09-21 19:25:50 +02:00
parent df37318fba
commit 44e5c9ab96
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ if [[ $OPT_ENCFS -eq 1 ]]; then
fi
echo -n "Testing EncFS at $CRYPT: "
encfs --version
/home/jakob.donotbackup/encfs/build/encfs --extpass="echo test" --standard $CRYPT $MNT > /dev/null
encfs --extpass="echo test" --standard $CRYPT $MNT > /dev/null
elif [[ $OPT_LOOPBACK -eq 1 ]]; then
echo "Testing go-fuse loopback"
$HOME/go/src/github.com/hanwen/go-fuse/example/loopback/loopback $MNT $CRYPT &