aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtemplater4
1 files changed, 2 insertions, 2 deletions
diff --git a/templater b/templater
index 2247946..9d49b27 100755
--- a/templater
+++ b/templater
@@ -128,8 +128,8 @@ function templater_git {
__templater_user_input GIT_EMAIL user@example.org "-> Choose a git email address"
git init
- git config user.name $GIT_USER
- git config user.email $GIT_EMAIL
+ git config user.name "$GIT_USER"
+ git config user.email "$GIT_EMAIL"
git add .
git commit -m "Initial import"
else