aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-remote-gcrypt
diff options
context:
space:
mode:
authorroot <root@localhost>2013-02-14 00:00:00 +0000
committerroot <root@localhost>2013-02-14 00:00:00 +0000
commit18e9ad1121da2534161b73b8bfd71742394be93c (patch)
treedcf943c5c3128096b94d7101bdc8cd5d300cf7cb /git-remote-gcrypt
parentad49e025b951e2a89f11eff83577dd6233396900 (diff)
downloadgit-remote-gcrypt-18e9ad1121da2534161b73b8bfd71742394be93c.tar.gz
Use gcrypt: prefix for info messages
Diffstat (limited to 'git-remote-gcrypt')
-rwxr-xr-xgit-remote-gcrypt8
1 files changed, 4 insertions, 4 deletions
diff --git a/git-remote-gcrypt b/git-remote-gcrypt
index ea7b6d9..c2eea8f 100755
--- a/git-remote-gcrypt
+++ b/git-remote-gcrypt
@@ -106,7 +106,7 @@ append()
}
tac() { sed '1!G;h;$!d'; }
-echo_info() { echo "$@" >&2; }
+echo_info() { echo "gcrypt:" "$@" >&2; }
make_new_repo()
{
@@ -119,9 +119,9 @@ make_new_repo()
RECIPIENTS=$(git config gcrypt.recipients | sed -e 's/\([^ ]\+\)/-R &/g')
if [ -z "$RECIPIENTS" ]
then
- echo_info "> You must configure which GnuPG recipients can access the repository."
- echo_info "> To setup for all your git repositories, use::"
- echo_info "> git config --global gcrypt.recipients KEYID"
+ echo_info "You must configure which GnuPG recipients can access the repository."
+ echo_info "To setup for all your git repositories, use::"
+ echo_info " git config --global gcrypt.recipients KEYID"
exit 1
fi
PUTREPO "$URL"