diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/share/mh/publish_key | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/share/mh/publish_key b/src/share/mh/publish_key index 72d2693..52c8b86 100644 --- a/src/share/mh/publish_key +++ b/src/share/mh/publish_key @@ -22,7 +22,8 @@ if [ "$PROMPT" != "false" ] ; then printf "Really publish key '$keyID' to $KEYSERVER? (Y/n) " >&2 read OK; OK=${OK:=Y} if [ "${OK/y/Y}" != 'Y' ] ; then - failure "key not published." + log error "key not published." + return fi else log debug "publishing key '$keyID' without prompting." |