aboutsummaryrefslogtreecommitdiff
path: root/git-shell-commands/new-repo
diff options
context:
space:
mode:
authorTrey Bastian <hello@treybastian.com>2026-04-08 16:57:55 +0100
committerTrey Bastian <hello@treybastian.com>2026-04-08 16:57:55 +0100
commitcf41deef9260bd205eb9e478fa4ada62106a2f6b (patch)
tree7fbfe82ecd1d3099cc2309f594862d2af24eedc5 /git-shell-commands/new-repo
parentcdfe027884b38a20682a48f67af4a5dce738b66a (diff)
fixing new-project bugs
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 f6b2dc8..4a32ad4 100755
--- a/git-shell-commands/new-repo
+++ b/git-shell-commands/new-repo
@@ -4,7 +4,7 @@
# ssh git@<host> new-repo <project name>
# - follow the prompts
-$PROJECT_NAME = $1
+PROJECT_NAME="$1"
if [[ -z "$1" ]]; then
echo "project name cannot be empty"
exit 1