Skip to content

Commit

Permalink
Issue #53: Fixed git config command. (#1402)
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell authored and grasmash committed Apr 18, 2017
1 parent 26f46a5 commit 84a986b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion phing/tasks/deploy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@
<isset property="git.user.email"/>
</and>
<then>
<exec dir="${deploy.dir}" command="git config --local --add user.email ${git.user.email} user.name ${git.user.name}" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
<exec dir="${deploy.dir}" command="git config --local --add user.email '${git.user.email}'" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
<exec dir="${deploy.dir}" command="git config --local --add user.name '${git.user.name}'" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
</then>
</if>

Expand Down

0 comments on commit 84a986b

Please sign in to comment.