diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-24 03:21:44 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-04-24 03:21:44 +0200 |
commit | a759d964e40d160d901052ec90e53c5acbe60355 (patch) | |
tree | 7b84764c40b49d662412ed7e9f3e3cd62544eee1 /tests/setup.sh | |
parent | 31119bfcd019bf6820450664f2dbbe70340d20d8 (diff) | |
download | pass-a759d964e40d160d901052ec90e53c5acbe60355.tar.gz pass-a759d964e40d160d901052ec90e53c5acbe60355.tar.bz2 pass-a759d964e40d160d901052ec90e53c5acbe60355.zip |
Turns out aliases were a bad idea.
Diffstat (limited to '')
-rwxr-xr-x | tests/setup.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/setup.sh b/tests/setup.sh index 67c489f..8198874 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -29,14 +29,12 @@ if [[ ! -e $PASS ]]; then echo "Could not find password-store.sh" exit 1 fi -alias pass="command \"$PASS\"" # Note: the assumption is the test key is unencrypted. export GNUPGHOME="$TEST_HOME/gnupg/" chmod 700 "$GNUPGHOME" GPG="gpg" which gpg2 &>/dev/null && GPG="gpg2" -alias gpg="command $GPG" # We don't want to use any running agent. # We want an agent to appear to pass to be running. |