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/09/09 23:02:54 UTC

git commit: [flex-utilities] [refs/heads/develop] - Load released artifacts instead of release candidates.

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 3bcfdf1bb -> c1c0b4aee


Load released artifacts instead of release candidates.


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

Branch: refs/heads/develop
Commit: c1c0b4aee5f5d614a0dd70ed84a143ddaeb8efbb
Parents: 3bcfdf1
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Fri Sep 9 16:02:39 2016 -0700
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Fri Sep 9 16:02:39 2016 -0700

----------------------------------------------------------------------
 npm-flexjs/dependencies/ApacheFalcon.js | 6 +++---
 npm-flexjs/dependencies/ApacheFlexJS.js | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/c1c0b4ae/npm-flexjs/dependencies/ApacheFalcon.js
----------------------------------------------------------------------
diff --git a/npm-flexjs/dependencies/ApacheFalcon.js b/npm-flexjs/dependencies/ApacheFalcon.js
index d9e5c86..bcdd8d8 100644
--- a/npm-flexjs/dependencies/ApacheFalcon.js
+++ b/npm-flexjs/dependencies/ApacheFalcon.js
@@ -419,14 +419,14 @@ ApacheFalcon.falconInstallComplete = function()
 
 ApacheFalcon.install = function()
 {
-    //request(constants.APACHE_MIRROR_RESOLVER_URL + pathToFalconBinary + fileNameFalconBinary + '?' + constants.REQUEST_JSON_PARAM, ApacheFalcon.handleFalconMirrorsResponse);
+    request(constants.APACHE_MIRROR_RESOLVER_URL + pathToFalconBinary + fileNameFalconBinary + '?' + constants.REQUEST_JSON_PARAM, ApacheFalcon.handleFalconMirrorsResponse);
     console.log('Downloading Apache Flex Falcon Compiler');
-	request
+	/*request
 		.get("http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBuild/artifact/out/apache-flex-falconjx-0.7.0-bin.zip")
 		.pipe(fs.createWriteStream(constants.DOWNLOADS_FOLDER + fileNameFalconBinary)
 			.on('finish', function(){
 				console.log('Apache Flex Falcon Compiler download complete');
 				ApacheFalcon.extract();
 			})
-	);
+	);*/
 };
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/c1c0b4ae/npm-flexjs/dependencies/ApacheFlexJS.js
----------------------------------------------------------------------
diff --git a/npm-flexjs/dependencies/ApacheFlexJS.js b/npm-flexjs/dependencies/ApacheFlexJS.js
index bb28cfa..05796cb 100644
--- a/npm-flexjs/dependencies/ApacheFlexJS.js
+++ b/npm-flexjs/dependencies/ApacheFlexJS.js
@@ -64,14 +64,14 @@ ApacheFlexJS.extract = function()
 
 ApacheFlexJS.install = function()
 {
-    //request(constants.APACHE_MIRROR_RESOLVER_URL + pathToFlexJSBinary + fileNameFlexJSBinary + '?' + constants.REQUEST_JSON_PARAM, ApacheFlexJS.handleFlexJSMirrorsResponse);
+    request(constants.APACHE_MIRROR_RESOLVER_URL + pathToFlexJSBinary + fileNameFlexJSBinary + '?' + constants.REQUEST_JSON_PARAM, ApacheFlexJS.handleFlexJSMirrorsResponse);
     console.log('Downloading Apache FlexJS');
-	request
+	/*request
 		.get("http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/lastSuccessfulBuild/artifact/out/apache-flex-flexjs-0.7.0-bin.zip")
 		.pipe(fs.createWriteStream(constants.DOWNLOADS_FOLDER + fileNameFlexJSBinary)
 			.on('close', function(){
 				console.log('Apache FlexJS download complete');
 				ApacheFlexJS.extract();
 			})
-	);
+	);*/
 };
\ No newline at end of file