Skip to content

Commit

Permalink
Fixed the CI error by added missing clean target for the grids and base
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Goderre committed Jun 15, 2012
1 parent 2aeab41 commit 730f662
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.xml
Expand Up @@ -9,23 +9,23 @@
<echo level="info">
---Building jQuery Integration project---
</echo>
<ant dir="${src.dir}/js" antfile="build.xml" inheritAll="false"/>
<ant dir="${src.dir}/js" antfile="build.xml" target="build" inheritAll="false"/>
<echo level="info">
---Building CSS Base System project---
</echo>
<ant dir="${src.dir}/base" antfile="build.xml" inheritAll="false"/>
<ant dir="${src.dir}/base" antfile="build.xml" target="build" inheritAll="false"/>
<echo level="info">
---Building CSS Grid System project---
</echo>
<ant dir="${src.dir}/grids" antfile="build.xml" inheritAll="false"/>
<ant dir="${src.dir}/grids" antfile="build.xml" target="build" inheritAll="false"/>
<echo level="info">
---Building GCWU Theme---
</echo>
<ant dir="${src.dir}/theme-gcwu-fegc" antfile="build.xml" inheritAll="false"/>
<ant dir="${src.dir}/theme-gcwu-fegc" antfile="build.xml" target="build" inheritAll="false"/>
<echo level="info">
---Building GCWU Theme Intranet---
</echo>
<ant dir="${src.dir}/theme-gcwu-intranet" antfile="build.xml" inheritAll="false"/>
<ant dir="${src.dir}/theme-gcwu-intranet" antfile="build.xml" target="build" inheritAll="false"/>
<antcall target="clean-css"/>
</target>

Expand Down
3 changes: 3 additions & 0 deletions src/base/build.xml
Expand Up @@ -50,6 +50,9 @@
---Watching for SCSS Changes in CSS Directory---
</echo>
</target>


<target name="clean"></target>

<target name="clean-css">
<delete dir="${src.dir}/css" />
Expand Down
2 changes: 2 additions & 0 deletions src/theme-gcwu-intranet/build.xml
Expand Up @@ -54,5 +54,7 @@
<target name="clean-css">
<delete dir="${src.dir}/css" />
</target>

<target name="clean"></target>

</project>

0 comments on commit 730f662

Please sign in to comment.