aboutsummaryrefslogtreecommitdiff
path: root/templater
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-10-29 10:28:03 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-10-29 10:28:03 -0200
commit8e83eb20f8841022cf9a221f2e8447cdba1f7270 (patch)
tree986bb1fb9ae6ee7fe1a6171958d1fa1779b1201c /templater
parenta7c5a347d928255af616af25202c268a6721fdf7 (diff)
downloadtemplater-8e83eb20f8841022cf9a221f2e8447cdba1f7270.tar.gz
templater-8e83eb20f8841022cf9a221f2e8447cdba1f7270.tar.bz2
Minor fixes at templater_git
Diffstat (limited to 'templater')
-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