Skip to content

Commit

Permalink
adding create inspection folder
Browse files Browse the repository at this point in the history
  • Loading branch information
mhenke committed Jun 1, 2013
1 parent efa63cd commit 01c1f0f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.xml
Expand Up @@ -61,7 +61,6 @@
<fail message="mxunit.haltonfailure ${prop.message}" unless="mxunit.haltonfailure"/>
<fail message="mxunit.haltonerror ${prop.message}" unless="mxunit.haltonerror"/>


<!-- mxunit default properties -->
<property name="testing.unit.haltonfailure" value="false" />
<property name="testing.unit.haltonerror" value="false" />
Expand Down Expand Up @@ -105,7 +104,6 @@
<target name="clean">
<echo>Cleaning started...</echo>
<delete dir="${filePathToBuildFolder}" />
<delete file="${filePathToBuildFolder}" />
<delete file="compileresults.txt"/>
<delete file="cpd.xml"/>
<delete file="jslint.xml"/>
Expand All @@ -121,6 +119,8 @@
=================================
-->
<target name="copy" depends="init,clean" unless="jenkins_workspace">
<echo>Create ${filePathToBuildFolder}</echo>
<mkdir dir="${filePathToBuildFolder}"/>
<echo>Copying from ${webroot}/${directoryName}</echo>
<copy todir="${filePathToBuildFolder}">
<fileset dir="${webroot}/${directoryName}">
Expand Down Expand Up @@ -161,6 +161,8 @@
=================================
-->
<target name="copy.jenkins" depends="init,clean" if="jenkins_workspace">
<echo>Create ${filePathToBuildFolder}</echo>
<mkdir dir="${filePathToBuildFolder}"/>
<echo>Copying from ${jenkins_workspace}</echo>
<copy todir="${filePathToBuildFolder}">
<fileset dir="${jenkins_workspace}">
Expand Down Expand Up @@ -502,7 +504,6 @@
=================================
-->
<target name="compile.check" depends="init,copy,copy.jenkins" description="this will inspect code for syntax issues">

<condition property="compile.nofiles">
<resourcecount when="equal" count="0">
<fileset dir="${filePathToBuildFolder}">
Expand Down

0 comments on commit 01c1f0f

Please sign in to comment.