diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-10-29 10:28:03 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-10-29 10:28:03 -0200 |
commit | 8e83eb20f8841022cf9a221f2e8447cdba1f7270 (patch) | |
tree | 986bb1fb9ae6ee7fe1a6171958d1fa1779b1201c | |
parent | a7c5a347d928255af616af25202c268a6721fdf7 (diff) | |
download | templater-8e83eb20f8841022cf9a221f2e8447cdba1f7270.tar.gz templater-8e83eb20f8841022cf9a221f2e8447cdba1f7270.tar.bz2 |
Minor fixes at templater_git
-rwxr-xr-x | templater | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |