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 2013/06/08 00:15:09 UTC

git commit: [flex-sdk] [refs/heads/develop] - Added create-md5 target in build.xml. Will be useful when creating artifacts on the build server.

Updated Branches:
  refs/heads/develop 750e4e063 -> 513ef6552


Added create-md5 target in build.xml.  Will be useful when creating artifacts on the build server.


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

Branch: refs/heads/develop
Commit: 513ef655250c289ab579bd59c984fa12803a0bad
Parents: 750e4e0
Author: Om <bi...@gmail.com>
Authored: Fri Jun 7 15:10:45 2013 -0700
Committer: Om <bi...@gmail.com>
Committed: Fri Jun 7 15:13:37 2013 -0700

----------------------------------------------------------------------
 build.xml |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/513ef655/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index aea26b3..86e0620 100644
--- a/build.xml
+++ b/build.xml
@@ -1772,4 +1772,13 @@
             </fileset>
         </rat:report>
     </target>
+	
+	<target name="create-md5" >
+		<echo message="Generating MD5 hashes for release artifacts"/>
+		<checksum file="${basedir}/out/${binary.kit}.tar.gz" forceOverwrite="yes"/>
+		<checksum file="${basedir}/out/${binary.kit}.zip" forceOverwrite="yes"/>
+		<checksum file="${basedir}/out/${source.kit}.tar.gz" forceOverwrite="yes"/>
+		<checksum file="${basedir}/out/${source.kit}.zip" forceOverwrite="yes"/>
+	</target>
+
 </project>