You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/12/28 21:00:29 UTC

[3/3] git commit: [flex-flexunit] [refs/heads/develop] - try to remove the as3 swc temporarily after it is built. The build scripts cared too much about its existence

try to remove the as3 swc temporarily after it is built.  The build scripts cared too much about its existence


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/44c9a3da
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/44c9a3da
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/44c9a3da

Branch: refs/heads/develop
Commit: 44c9a3da661df67c6253273bb50a244848fb5783
Parents: 22fac67
Author: Alex Harui <ah...@apache.org>
Authored: Mon Dec 28 12:00:20 2015 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Dec 28 12:00:20 2015 -0800

----------------------------------------------------------------------
 FlexUnit4/build.xml | 5 +++++
 build.xml           | 3 +++
 2 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/44c9a3da/FlexUnit4/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4/build.xml b/FlexUnit4/build.xml
index c12d35f..7bb3c3e 100644
--- a/FlexUnit4/build.xml
+++ b/FlexUnit4/build.xml
@@ -232,4 +232,9 @@
            description="${build.deploy.description}">
        </apache-deploy>
    </target>
+   
+   <target name="clean_as3">
+       <delete file="${bin.loc}/${build.finalName.as3}.${build.packaging}" failonerror="false" />
+       <delete file="${dist.loc}/${build.finalName.as3}.${build.packaging}" failonerror="false" />
+   </target>
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/44c9a3da/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 9d20e8c..512aff9 100644
--- a/build.xml
+++ b/build.xml
@@ -469,4 +469,7 @@ to contribute to our CI process.
         <echo message="not found in anttask.classpath"/>
     </target>
    
+   <target name="clean_as3">
+       <ant dir="FlexUnit4" target="clean_as3" />
+   </target>
 </project>