diff options
Diffstat (limited to 'git-shell-commands/delete-repo')
-rwxr-xr-x | git-shell-commands/delete-repo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-shell-commands/delete-repo b/git-shell-commands/delete-repo index 8349308..5731272 100755 --- a/git-shell-commands/delete-repo +++ b/git-shell-commands/delete-repo @@ -5,7 +5,7 @@ set -e -for i in $@; do +for repo in $@; do if [ -z "$repo" ]; then continue; fi # lo and behold absolute horror |