diff options
author | Parabola git <git@parabola.nu> | 2016-07-07 22:37:56 +0000 |
---|---|---|
committer | Parabola git <git@parabola.nu> | 2016-07-07 22:37:56 +0000 |
commit | 4fe7bac236d7c1895271bf15bdb9dda1253ec230 (patch) | |
tree | e8f927d4e4a439c1cdfc617d845e736606f02ad9 /git-shell-commands/change-description | |
parent | c9ce5eaac72b867b2de97378f1708a035a9e9bf6 (diff) |
git-shell-commands: use tab
Diffstat (limited to 'git-shell-commands/change-description')
-rwxr-xr-x | git-shell-commands/change-description | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description index 1c144f4..16b7ad2 100755 --- a/git-shell-commands/change-description +++ b/git-shell-commands/change-description @@ -12,8 +12,8 @@ _repo="$(sed -r -e '/(^|\/)\.\.($|\/)/d' -e "s,[^A-Za-z0-9\./_~-],,g" <<<"$repo" test "$repo" = "$_repo" || { printf 'Illegal name: %s\n' "${repo}"; exit 1; } if test -d "$repo".git; then - echo "${*}" > "${repo}".git/description + echo "${*}" > "${repo}".git/description else - printf 'Does not exist: %s\n' "${repo}" - exit 1 + printf 'Does not exist: %s\n' "${repo}" + exit 1 fi |