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 2016/06/29 06:20:47 UTC

[4/4] git commit: [flex-asjs] [refs/heads/develop] - fix packaging of the JS swcs

fix packaging of the JS swcs


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

Branch: refs/heads/develop
Commit: a0ed79f2f769f1845ff47eb22dd4cd10a78b120b
Parents: 87928b4
Author: Alex Harui <ah...@apache.org>
Authored: Tue Jun 28 23:20:27 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Jun 28 23:20:40 2016 -0700

----------------------------------------------------------------------
 build.xml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a0ed79f2/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index fd54ecf..714a33e 100644
--- a/build.xml
+++ b/build.xml
@@ -756,16 +756,17 @@
         </concat>
         
         <!-- frameworks/libs -->
-        <copy todir="${basedir}/temp/frameworks/libs">
-            <fileset dir="${basedir}/frameworks/libs">
+        <copy todir="${basedir}/temp/frameworks">
+            <fileset dir="${basedir}/frameworks">
                 <include name="**.swc"/>
             </fileset>
         </copy>
 
         <!-- copy all js again to pick up cross-compiled files -->
-        <copy todir="${basedir}/temp/frameworks/projects">
-            <fileset dir="${basedir}/frameworks/projects">
+        <copy todir="${basedir}/temp/frameworks">
+            <fileset dir="${basedir}/frameworks">
                 <include name="**/**.js"/>
+                <exclude name="js/VanillaSDK/**" />
             </fileset>
         </copy>