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 2014/06/17 06:09:09 UTC

[2/2] git commit: [flex-falcon] [refs/heads/develop] - add caching info to log

add caching info to log


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

Branch: refs/heads/develop
Commit: 2e19deb0f9d1c2f3f4fdbe6a0eb0bbe5eda34ecd
Parents: 786b064
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jun 16 21:08:56 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jun 16 21:08:56 2014 -0700

----------------------------------------------------------------------
 compiler.jx/downloads.xml | 3 +++
 compiler/downloads.xml    | 3 +++
 2 files changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2e19deb0/compiler.jx/downloads.xml
----------------------------------------------------------------------
diff --git a/compiler.jx/downloads.xml b/compiler.jx/downloads.xml
index ff73c61..5048aa8 100644
--- a/compiler.jx/downloads.xml
+++ b/compiler.jx/downloads.xml
@@ -179,6 +179,9 @@
 	</target>
 	
     <target name="copy-if-cached" if="found-in-cache">
+		<!-- this string comes from the FlexJS en_US.properties because for now, this
+		     target won't get called unless this script is called from the FlexJS install -->
+		<echo>${INFO_USING_CACHED_FILE} ${file}</echo>
 		<copy file="${downloadCacheFolder}/${srcFolder}/${srcFile}" tofile="${dest}" overwrite="true" />
 	</target> 
 	

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2e19deb0/compiler/downloads.xml
----------------------------------------------------------------------
diff --git a/compiler/downloads.xml b/compiler/downloads.xml
index b3d02db..77cb756 100644
--- a/compiler/downloads.xml
+++ b/compiler/downloads.xml
@@ -214,6 +214,9 @@
 	</target>
 	
     <target name="copy-if-cached" if="found-in-cache">
+		<!-- this string comes from the FlexJS en_US.properties because for now, this
+		     target won't get called unless this script is called from the FlexJS install -->
+		<echo>${INFO_USING_CACHED_FILE} ${file}</echo>
 		<copy file="${downloadCacheFolder}/${cacheFolder}/${srcFile}" tofile="${dest}" overwrite="true"/>
 	</target>