From: Jameson Graef Rollins Date: Sat, 21 Feb 2009 21:48:30 +0000 (-0500) Subject: make sure all prompt messages are going to stderr X-Git-Tag: monkeysphere_0.23~8 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=ac1e7db655c4be2f51511bdc967cdf16bf2560e7;hp=d8692549051e028ea0e10dc224d2073ad3773949;p=monkeysphere.git make sure all prompt messages are going to stderr --- diff --git a/src/monkeysphere b/src/monkeysphere index fd96f45..371983f 100755 --- a/src/monkeysphere +++ b/src/monkeysphere @@ -122,7 +122,7 @@ check_gpg_authentication_subkey() { fi # if authentication key is valid, prompt to continue if [ "$validity" = 'u' ] ; then - echo "A valid authentication key already exists for primary key '$keyID'." + echo "A valid authentication key already exists for primary key '$keyID'." 1>&2 if [ "$PROMPT" = "true" ] ; then read -p "Are you sure you would like to generate another one? (y/N) " OK; OK=${OK:N} if [ "${OK/y/Y}" != 'Y' ] ; then diff --git a/src/share/mh/add_hostname b/src/share/mh/add_hostname index ec741ee..b08d688 100644 --- a/src/share/mh/add_hostname +++ b/src/share/mh/add_hostname @@ -32,11 +32,9 @@ find_host_userid > /dev/null && \ failure "Host userID '$userID' already exists." if [ "$PROMPT" = "true" ] ; then - cat <