You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2016/03/13 09:45:22 UTC

[07/16] git commit: [flex-utilities] [refs/heads/develop] - Copy moar files

Copy moar files


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

Branch: refs/heads/develop
Commit: 9a6f4aceb37ac61648abc508624e3ab13ba9491a
Parents: e0b7677
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Mon Dec 21 19:24:44 2015 -0800
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Sun Mar 13 00:44:11 2016 -0800

----------------------------------------------------------------------
 npm-flexjs/dependencies/ApacheFalcon.js | 31 ++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9a6f4ace/npm-flexjs/dependencies/ApacheFalcon.js
----------------------------------------------------------------------
diff --git a/npm-flexjs/dependencies/ApacheFalcon.js b/npm-flexjs/dependencies/ApacheFalcon.js
index 5a2996b..60091ba 100644
--- a/npm-flexjs/dependencies/ApacheFalcon.js
+++ b/npm-flexjs/dependencies/ApacheFalcon.js
@@ -206,6 +206,37 @@ function copyFiles()
         constants.FLEXJS_FOLDER + 'bin', {
             forceDelete: true
         });
+
+    //Bin-legacy TODO:FIXME
+
+    //copyfiles.jx copy FalconJX files into SDK
+    try
+    {
+        mkdirp(constants.FLEXJS_FOLDER + 'js/bin');
+        mkdirp(constants.FLEXJS_FOLDER + 'js/lib');
+        mkdirp(constants.FLEXJS_FOLDER + 'js/libs');
+        mkdirp(constants.FLEXJS_FOLDER + 'externs');
+    }
+    catch(e)
+    {
+        if ( e.code != 'EEXIST' ) throw e;
+    }
+
+    wrench.copyDirSyncRecursive(constants.DOWNLOADS_FOLDER + 'falcon/js/lib',
+        constants.FLEXJS_FOLDER + 'js/lib', {
+            forceDelete: true
+        });
+
+    wrench.copyDirSyncRecursive(constants.DOWNLOADS_FOLDER + 'falcon/js/libs',
+        constants.FLEXJS_FOLDER + 'js/libs', {
+            forceDelete: true
+        });
+
+    wrench.copyDirSyncRecursive(constants.DOWNLOADS_FOLDER + 'falcon/externs',
+        constants.FLEXJS_FOLDER + 'externs', {
+            forceDelete: true
+        });
+
 }
 
 ApacheFalcon.falconInstallComplete = function()