aboutsummaryrefslogtreecommitdiff
path: root/git-shell-commands/new-repo
diff options
context:
space:
mode:
Diffstat (limited to 'git-shell-commands/new-repo')
-rwxr-xr-xgit-shell-commands/new-repo2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-shell-commands/new-repo b/git-shell-commands/new-repo
index fa0b26b..52bd69f 100755
--- a/git-shell-commands/new-repo
+++ b/git-shell-commands/new-repo
@@ -10,7 +10,7 @@ echo "oh look you are starting a project you won't finish again."
echo "What is your projects name?"
read PROJECT_NAME
if [[ $PROJECT_NAME!=*.git ]]; then
- $PROJECT_NAME="${PROJECT_NAME}.git"
+ PROJECT_NAME="${PROJECT_NAME}.git"
fi
echo "What's the mirror repo remote url?(leave blank if private)"
read REMOTE_URL