MINOR Ignore stash errors in phing build task

This commit is contained in:
Ingo Schommer 2012-06-25 14:11:41 +02:00
parent 029c14b30a
commit 6dfd99a313

View File

@ -454,7 +454,7 @@ Your friendly automated release script.
<target name="translations-update-gl-contribs" description="Update translations in working copy from getlocalization.com, and commit changes to a specialized branch and push to origin repository. Note: The API requests can take a couple of minutes." <target name="translations-update-gl-contribs" description="Update translations in working copy from getlocalization.com, and commit changes to a specialized branch and push to origin repository. Note: The API requests can take a couple of minutes."
depends="translations-staging-setup"> depends="translations-staging-setup">
<exec command="git stash" dir="${module}" checkreturn="true" /> <exec command="git stash" dir="${module}" />
<updateTranslationsTask <updateTranslationsTask
glProductName="${getlocalization.${module}.project}" glProductName="${getlocalization.${module}.project}"
glUser="${getlocalization.${module}.user}" glUser="${getlocalization.${module}.user}"
@ -472,7 +472,7 @@ Your friendly automated release script.
</then> </then>
</if> </if>
<exec command="git checkout master" dir="${module}" checkreturn="true" /> <exec command="git checkout master" dir="${module}" checkreturn="true" />
<exec command="git stash pop" dir="${module}" checkreturn="true" /> <exec command="git stash pop" dir="${module}" />
</target> </target>
<target name="translations-sync" <target name="translations-sync"