You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2012/04/10 21:15:20 UTC

[21/50] git commit: Added signing and md5

Added signing and md5


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/commit/d0ed64f7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/tree/d0ed64f7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/diff/d0ed64f7

Branch: refs/heads/master
Commit: d0ed64f72bc594cf88924b97ec11a6c8a542377f
Parents: afb7306
Author: Tim Kim <ti...@adobe.com>
Authored: Thu Feb 16 17:42:37 2012 -0800
Committer: Tim Kim <ti...@adobe.com>
Committed: Thu Feb 16 17:42:37 2012 -0800

----------------------------------------------------------------------
 coho |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/blob/d0ed64f7/coho
----------------------------------------------------------------------
diff --git a/coho b/coho
index 2cd15b5..aea313b 100755
--- a/coho
+++ b/coho
@@ -125,6 +125,6 @@ if (oldVer != undefined){
 }
 
 executeCommands(function(){
-	exec("cd temp/ && zip -r phonegap-"+VERSION+".zip release/ && say DONE", function(e, stdout, stderr) {
+	exec("cd temp/ && zip -r phonegap-"+VERSION+".zip release/ && gpg --armor --output phonegap-"+VERSION+".zip.asc --detach-sig phonegap-"+VERSION+".zip && gpg --print-md MD5 phonegap-"+VERSION+".zip > phonegap-"+VERSION+".zip.md5 && say DONE", function(e, stdout, stderr) {
 	});
 });