summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgit-shell-commands/change-description3
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 $?