Skip to content

Commit

Permalink
Don't fail when Cargo temp directory cannot be deleted.
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislawosinski committed Jan 30, 2012
1 parent 5d5fe4a commit a6fe0a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/ant/common/webtest.xml
Expand Up @@ -22,7 +22,7 @@
<property name="tomcat.config.dir" location="@{cargo.tmp.dir}/config" />
<property name="tomcat.log.dir" location="@{cargo.tmp.dir}/log" />

<delete dir="@{cargo.tmp.dir}" />
<delete dir="@{cargo.tmp.dir}" failonerror="false" />
<mkdir dir="${tomcat.log.dir}"/>
<mkdir dir="${tomcat.config.dir}"/>

Expand Down

0 comments on commit a6fe0a8

Please sign in to comment.