From 5a4d92b4cfe00633481a23e708b73201c27ac673 Mon Sep 17 00:00:00 2001 From: Trey Bastian Date: Thu, 30 Oct 2025 12:23:12 +0000 Subject: n00b mistake -- VAR= not $VAR= --- git-shell-commands/new-repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3