updated coho
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/ec4c8518 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/tree/ec4c8518 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/diff/ec4c8518 Branch: refs/heads/master Commit: ec4c8518dd99d1eb5e8568d7e065b984bc6e0f4f Parents: ea2f9fe Author: steven gill <ste...@apache.org> Authored: Wed Sep 5 15:15:18 2012 -0700 Committer: steven gill <ste...@apache.org> Committed: Wed Sep 5 15:15:18 2012 -0700 ---------------------------------------------------------------------- coho | 46 +++++++++++++++++++++++----------------------- 1 files changed, 23 insertions(+), 23 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/blob/ec4c8518/coho ---------------------------------------------------------------------- diff --git a/coho b/coho index 8805491..7f60922 100755 --- a/coho +++ b/coho @@ -206,37 +206,37 @@ queueCommand("cp bin/LICENSE temp/release/src/cordova-"+VERSION+"/LICENSE"); queueCommand("cp bin/DISCLAIMER temp/release/src/cordova-"+VERSION+"/DISCLAIMER"); if (oldVer != undefined){ - queueCommand("echo IOS") - queueCommand("cd temp/release/src/cordova-"+VERSION+"/ && touch changelog && echo 'ChangeLog' > changelog") - queueCommand("echo 'ios' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+iosdir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") - queueCommand("echo BB") - queueCommand("echo 'blackberry' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+blackberrydir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo iOS") + queueCommand("cd temp/release/src/cordova-"+VERSION+"/ && touch changelog && echo 'CHANGELOG' > changelog") + queueCommand("echo '\niOS \n---\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+iosdir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo BlackBerry") + queueCommand("echo '\nBlackBerry \n----------\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+blackberrydir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo ANDROID") - queueCommand("echo 'android' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+androiddir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo '\nAndroid \n-------\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+androiddir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo WINDOWS") - queueCommand("echo 'windows-phone' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+windowsdir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo \n'Windows Phone \n-------------\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+windowsdir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo WEBOS") - queueCommand("echo 'webos' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+webosdir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo '\nWebOS \n-----\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+webosdir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo BADA") - queueCommand("echo 'bada' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+badadir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo '\nBada \n----\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+badadir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo BADAWAC") - queueCommand("echo 'badaWac' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+badaWacdir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo '\nBadaWac \n-------\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+badaWacdir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo TIZEN") - queueCommand("echo 'tizen' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+tizendir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo '\nTizen \n-----\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+tizendir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo MAC") - queueCommand("echo 'mac' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+macdir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo '\nMac \n---\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+macdir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") queueCommand("echo QT") - queueCommand("echo 'qt' >> temp/release/src/cordova-"+VERSION+"/changelog") - queueCommand("cd " + tempRepoDir + "/"+qtdir+" && git shortlog --no-merges "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") + queueCommand("echo '\nQt \n--\n' >> temp/release/src/cordova-"+VERSION+"/changelog") + queueCommand("cd " + tempRepoDir + "/"+qtdir+" && git log --format='%h %s' "+oldVer+".."+VERSION+" >> "+releaseSrcDir+"/changelog") } // zip and sign bin/src/doc folders