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 01:21:31 UTC

git commit: [flex-sdk] [refs/heads/develop] - Using algorithm="md5" when generating md5 checksum because .md5 != .MD5

Updated Branches:
  refs/heads/develop 513ef6552 -> 2601af629


Using algorithm="md5" when generating md5 checksum because .md5 != .MD5


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

Branch: refs/heads/develop
Commit: 2601af62943e24e32d4d8c90fe9fc20b30b8b50d
Parents: 513ef65
Author: Om <bi...@gmail.com>
Authored: Fri Jun 7 16:20:13 2013 -0700
Committer: Om <bi...@gmail.com>
Committed: Fri Jun 7 16:20:13 2013 -0700

----------------------------------------------------------------------
 build.xml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2601af62/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 86e0620..a37872c 100644
--- a/build.xml
+++ b/build.xml
@@ -1775,10 +1775,10 @@
 	
 	<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"/>
+		<checksum algorithm="md5" file="${basedir}/out/${binary.kit}.tar.gz" forceOverwrite="yes"/>
+		<checksum algorithm="md5" file="${basedir}/out/${binary.kit}.zip" forceOverwrite="yes"/>
+		<checksum algorithm="md5" file="${basedir}/out/${source.kit}.tar.gz" forceOverwrite="yes"/>
+		<checksum algorithm="md5" file="${basedir}/out/${source.kit}.zip" forceOverwrite="yes"/>
 	</target>
 
 </project>