From 76571cb2dc2644e9eb23758cd8da6d281d573994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Tue, 8 Oct 2013 11:58:22 -0300 Subject: Allow hidden repos --- git-shell-commands/create-bare-repo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git-shell-commands/create-bare-repo') 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 -- cgit v1.2.3