diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-01-18 18:38:27 -0500 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-01-18 18:38:27 -0500 |
commit | 7dbd6806e538ff8732dd87fcf20bfd8271464552 (patch) | |
tree | 7a564c4d55e5e6f9a2f74d1a22fa59aae03171a5 /src/share/mh/publish_key | |
parent | 638a70f020f4ccda3deb15e5c697d384e0f705d7 (diff) |
canonicalize prompting to prompt if MONKEYSPHERE_PROMPT != 'false'
Diffstat (limited to 'src/share/mh/publish_key')
-rw-r--r-- | src/share/mh/publish_key | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/mh/publish_key b/src/share/mh/publish_key index 553cd72..f1c1723 100644 --- a/src/share/mh/publish_key +++ b/src/share/mh/publish_key @@ -18,7 +18,7 @@ publish_key() { local keyID="$1" local GNUPGHOME -if [ "$PROMPT" = "true" ] ; then +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 |