diff options
Diffstat (limited to 'git-shell-commands')
-rwxr-xr-x | git-shell-commands/change-description | 3 |
1 files changed, 1 insertions, 2 deletions
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 $? |