From: R. Steve McKown Date: Mon, 22 Sep 2014 17:38:14 +0000 (-0600) Subject: gitcreate: correct typo in error message X-Git-Tag: 0.9~1 X-Git-Url: https://oss.titaniummirror.com/gitweb?p=repo_shell.git;a=commitdiff_plain;h=9f2bf73914fe26e0386cda1f6a5c28339ad73d9c gitcreate: correct typo in error message --- diff --git a/scripts/gitcreate b/scripts/gitcreate index daa5eb4..4dadacd 100755 --- a/scripts/gitcreate +++ b/scripts/gitcreate @@ -54,7 +54,7 @@ if [ ! -d "$git_root/$repodir" ]; then fi mkdir -p "$git_root/$repodir" 2>/dev/null if [ ! -d "$git_root/$repodir" ]; then - echo "%0: repository not created, git subdir '$repodir' create failed" >&2 + echo "$0: repository not created, git subdir '$repodir' create failed" >&2 exit 1 fi fi