Skip to content

Commit

Permalink
removed debug not remove batch file if because it worksnt
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark van Straten committed May 4, 2012
1 parent aeafb02 commit 45a6ddf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy-appengine.build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<exec program="${deploy-batchfile-filepath}" />

<!-- cleanup execute batch file -->
<delete file="${deploy-batchfile-filepath}" if="${file::exists(deploy-batchfile-filepath)} AND ${debug != 'true'}"/>
<delete file="${deploy-batchfile-filepath}" if="${file::exists(deploy-batchfile-filepath)}"/><!-- AND ${debug != 'true'} oid ?-->

<echo message="Application succesfully deployed to http://${gae-compatible-application-version}.${application-id}.appspot.com"/>

Expand All @@ -154,7 +154,7 @@
<exec program="${setdefaultapp-batchfile-filepath}" />

<!-- cleanup execute batch file -->
<delete file="${setdefaultapp-batchfile-filepath}" if="${file::exists(setdefaultapp-batchfile-filepath)} AND ${debug != 'true'}"/>
<delete file="${setdefaultapp-batchfile-filepath}" if="${file::exists(setdefaultapp-batchfile-filepath)}"/><!-- AND ${debug != 'true'} oid ?-->

<echo message="Application succesfully set as active version on http://${application-id}.appspot.com"/>
</target>
Expand Down

0 comments on commit 45a6ddf

Please sign in to comment.