aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/setup.sh
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-04-23 01:17:04 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2014-04-23 01:17:04 +0200
commit8a88bc0317c7e449b65b067352f0d783171fb359 (patch)
tree1e08dc148e60d229731d7dcc1317366f049a25bc /tests/setup.sh
parentElide more variables. (diff)
downloadpassword-store-8a88bc0317c7e449b65b067352f0d783171fb359.tar.xz
password-store-8a88bc0317c7e449b65b067352f0d783171fb359.zip
tests: make bash usage explicit
Diffstat (limited to 'tests/setup.sh')
-rwxr-xr-xtests/setup.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/setup.sh b/tests/setup.sh
index 88f8aa5..3b9e089 100755
--- a/tests/setup.sh
+++ b/tests/setup.sh
@@ -16,9 +16,7 @@ PASSWORD_STORE_TEST_HOME="$(cd "$(dirname "$BASH_SOURCE")"; pwd)"
PASS="${PASSWORD_STORE_TEST_HOME}/../src/password-store.sh"
-if test -e ${PASS} ; then
- echo "pass is ${PASS}"
-else
+if ! test -e ${PASS} ; then
echo "Could not find password-store.sh"
exit 1
fi