summaryrefslogtreecommitdiff
path: root/git-shell-commands/change-owner
diff options
context:
space:
mode:
Diffstat (limited to 'git-shell-commands/change-owner')
-rwxr-xr-xgit-shell-commands/change-owner6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-shell-commands/change-owner b/git-shell-commands/change-owner
index 562de7d..8b59388 100755
--- a/git-shell-commands/change-owner
+++ b/git-shell-commands/change-owner
@@ -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
- git config -f "${repo}.git/config" "gitweb.owner" "${*}"
+ git config -f "${repo}.git/config" "gitweb.owner" "${*}"
else
- printf 'Does not exist: %s\n' "${repo}"
- exit 1
+ printf 'Does not exist: %s\n' "${repo}"
+ exit 1
fi