diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | lib/keyringer/actions/recrypt | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2014-04-06 - Silvio Rhatto <rhatto@riseup.net> + Fix recryption error when using gpg-agent in text mode (#55) + Be more verbose on recrypt errors Adding "commit" action which is a wrapper around "git commit" diff --git a/lib/keyringer/actions/recrypt b/lib/keyringer/actions/recrypt index d374308..30c9254 100755 --- a/lib/keyringer/actions/recrypt +++ b/lib/keyringer/actions/recrypt @@ -16,7 +16,7 @@ function keyringer_recrypt { keyringer_set_recipients "$FILE" # Decrypt - decrypted="$($GPG --use-agent -d "$KEYDIR/$FILE" 2> /dev/null)" + decrypted="$($GPG --use-agent -d "$KEYDIR/$FILE")" if [ "$?" != "0" ]; then echo "Decryption error on $1." |