diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-10-08 11:58:22 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-10-08 11:58:22 -0300 |
commit | 76571cb2dc2644e9eb23758cd8da6d281d573994 (patch) | |
tree | 8486cfbcbe1e97603c49493a4da5689be14671de /git-shell-commands/create-bare-repo | |
parent | d1bdb09e361ec4a057356d9055068c837d0005ba (diff) |
Allow hidden repos
Diffstat (limited to 'git-shell-commands/create-bare-repo')
-rwxr-xr-x | git-shell-commands/create-bare-repo | 4 |
1 files changed, 2 insertions, 2 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 |