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

[28/50] git commit: updated readme

updated readme


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/d32e1841
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/tree/d32e1841
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/diff/d32e1841

Branch: refs/heads/master
Commit: d32e18410ecd022bb7ead70eacc22168fc772825
Parents: 6b905a4
Author: stevengill <st...@nitobi.com>
Authored: Wed Feb 1 11:09:18 2012 -0800
Committer: stevengill <st...@nitobi.com>
Committed: Wed Feb 1 11:09:18 2012 -0800

----------------------------------------------------------------------
 README.md |   10 +++++++---
 coho      |    2 +-
 2 files changed, 8 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/blob/d32e1841/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index fa9999c..34d458f 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,7 @@ Coho is a script that automates the release process for building PhoneGap releas
 Prerequisites
 -------------
  - Must be run on a Mac with Lion installed
+ - Have node installed (v 6.6+)
  - Must have git setup
  - Install joDoc
 	- Clone [joDoc](http://github.com/davebalmer/jodoc)
@@ -35,7 +36,6 @@ Prerequisites
 
 Usage
 -----
-
 	coho 1.4.0
    	// creates phonegap-1.4.0.zip
 
@@ -50,8 +50,12 @@ Usage
 Manual Process
 --------------
 
-1. create a directory
-2. download the shit
+1. create directory structure
+2. download repositories
+3. run build scripts
+4. copy necessary files into release folder
+5. generate changelog
+6. zip release folder
 
 
 iOS

http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/blob/d32e1841/coho
----------------------------------------------------------------------
diff --git a/coho b/coho
index c19f64e..0369f6b 100755
--- a/coho
+++ b/coho
@@ -123,6 +123,6 @@ if (oldVer != undefined){
 }
 
 executeCommands(function(){
-	exec("cd temp/ && zip -r phonegap-"+VERSION+".zip release/", function(e, stdout, stderr) {
+	exec("cd temp/ && zip -r phonegap-"+VERSION+".zip release/ && say DONE", function(e, stdout, stderr) {
 	});
 });