Skip to content

Commit 7dd7397

Browse files
committed
Issue acquia#53: Fixed git config command.
1 parent 26f46a5 commit 7dd7397

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

phing/tasks/deploy.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@
262262
<isset property="git.user.email"/>
263263
</and>
264264
<then>
265-
<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"/>
265+
<exec dir="${deploy.dir}" command="git config --local --add user.email '${git.user.email}'" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
266+
<exec dir="${deploy.dir}" command="git config --local --add user.name '${git.user.name}'" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
266267
</then>
267268
</if>
268269

0 commit comments

Comments
 (0)