diff options
author | Leah Neukirchen <leah@vuxu.org> | 2018-09-03 16:01:45 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2018-09-03 16:01:45 +0200 |
commit | c818ab86459c686e03144a45b96d6bc8e77750f4 (patch) | |
tree | 9a31d085c1156850b0f2ab28e9bca2581a820150 /contrib | |
parent | 8274295d908556862ef434ace6f6d0efe333759a (diff) | |
download | mblaze-c818ab86459c686e03144a45b96d6bc8e77750f4.tar.gz mblaze-c818ab86459c686e03144a45b96d6bc8e77750f4.tar.xz mblaze-c818ab86459c686e03144a45b96d6bc8e77750f4.zip |
contrib/mgpg: ensure gpg errors are shown
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/mgpg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/mgpg b/contrib/mgpg index 38eec99..26c7e5e 100755 --- a/contrib/mgpg +++ b/contrib/mgpg @@ -14,7 +14,7 @@ n=$(mshow -t "$tmp" | awk -F: ' /: application\/octet-stream/ {if (supported) print $1}') if [ "$n" ]; then - mshow -O "$tmp" "$n" | gpg -d 2>&1 + mshow -O "$tmp" "$n" | gpg -d 2>&1 || exit 0 exit 64 fi exit 63 |