diff options
Diffstat (limited to 'git-shell-commands')
-rwxr-xr-x | git-shell-commands/create-bare-repo | 4 | ||||
-rwxr-xr-x | git-shell-commands/delete-repo | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo index 7559fc3..3051c9d 100755 --- a/git-shell-commands/create-bare-repo +++ b/git-shell-commands/create-bare-repo @@ -6,8 +6,8 @@ set -e for repo in $@; do -# Cleanup names - repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" +# Cleanup names, allow hidden repos + repo="`echo "$repo" | sed -e "s/\.\.//g" -e "s,^/\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" test -d "$repo".git && continue mkdir -p "$repo".git diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo index 075f77a..4ca644e 100755 --- a/git-shell-commands/delete-repo +++ b/git-shell-commands/delete-repo @@ -7,7 +7,7 @@ set -e for repo in $@; do # Remove leading slashes and dots and perform cleanup - repo="`echo "$repo" | sed -e "s,^[/\.]\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" + repo="`echo "$repo" | sed -e "s/\.\.//g" -e "s,^/\+,,g" -e "s,[^a-z0-9\./_-],,gi"`" test ! -d "$repo".git && continue echo "Removing ${repo}.git" |