From a62a275f25a53c675dd3e815463919bd0930a066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Wed, 5 Sep 2012 13:06:11 -0300 Subject: The logic was backwards :| --- git-shell-commands/change-description | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'git-shell-commands') diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index 437833c..120b1cd 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -5,8 +5,7 @@ set -E repo=$1; shift -description="$@" -echo "${repo}.git/${description}" > description +echo "${@}" > ${repo}.git/description exit $? -- cgit v1.2.3