diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-18 11:42:33 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-18 11:42:33 +0200 |
commit | 87b64249a9e9fe8f64222a079f20afe526337365 (patch) | |
tree | d36c870436ea69e21c2cea317d1d06cba3184c62 /test | |
parent | 710a886e087caed17c4b9958c1af99967d4e72fb (diff) |
test/main: Fixed envstore invocation
Diffstat (limited to 'test')
-rwxr-xr-x | test/main | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -117,7 +117,7 @@ if ((test_security)) { echo "# world-writable store file" $envstore save fucked yes chmod 777 $store_file - [[ $(envstore eval) != *fucked=yes* ]] + [[ $($envstore eval) != *fucked=yes* ]] rm $store_file $envstore save fucked yes cat <<- ente @@ -126,7 +126,7 @@ if ((test_security)) { ente echo -n "[press return when done] " read - [[ $(envstore eval) != *fucked=yes* ]] + [[ $($envstore eval) != *fucked=yes* ]] cat <<- ente Looking good, you may remove the file now rm $store_file |