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 2014/08/27 00:31:16 UTC

git commit: coho now updates ubuntu version script

Repository: cordova-coho
Updated Branches:
  refs/heads/master 4ef3e11ee -> 6e204a428


coho now updates ubuntu version script


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

Branch: refs/heads/master
Commit: 6e204a428e61de947e5c1654e269d46aef3972d3
Parents: 4ef3e11
Author: Steven Gill <st...@gmail.com>
Authored: Tue Aug 26 15:31:01 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Tue Aug 26 15:31:11 2014 -0700

----------------------------------------------------------------------
 src/cadance-release.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/6e204a42/src/cadance-release.js
----------------------------------------------------------------------
diff --git a/src/cadance-release.js b/src/cadance-release.js
index 3cd9b21..2646443 100644
--- a/src/cadance-release.js
+++ b/src/cadance-release.js
@@ -126,6 +126,8 @@ function *updateRepoVersion(repo, version) {
             shelljs.sed('-i', /VERSION.*=.*;/, 'VERSION = "' + version + '";', path.join('bin', 'templates', 'cordova', 'version'));
         } else if (repo.id == 'firefoxos') {
             shelljs.sed('-i', /VERSION.*=.*;/, 'VERSION = "' + version + '";', path.join('bin', 'templates', 'project','cordova', 'version'));
+        } else if (repo.id == 'ubuntu') {
+            shelljs.sed('-i', /VERSION.*=.*;/, 'VERSION = "' + version + '";', path.join('bin', 'build', 'version'));
         }
         shelljs.config.fatal = false;
         if (!(yield gitutil.pendingChangesExist())) {