You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/06/17 19:51:46 UTC

git commit: [CB-3557] Fix typo causing repo-update to not work.

Updated Branches:
  refs/heads/master 409bf8371 -> fa67a24cd


[CB-3557] Fix typo causing repo-update to not work.


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

Branch: refs/heads/master
Commit: fa67a24cd3f8257b3b5ab8670b890b731208cb51
Parents: 409bf83
Author: Andrew Grieve <ag...@chromium.org>
Authored: Mon Jun 17 13:51:04 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Mon Jun 17 13:51:04 2013 -0400

----------------------------------------------------------------------
 coho | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/fa67a24c/coho
----------------------------------------------------------------------
diff --git a/coho b/coho
index 5885b9a..181b908 100755
--- a/coho
+++ b/coho
@@ -530,7 +530,7 @@ function repoUpdateCommand(argv) {
     if (repos.length === 0) {
         fatal('No repos found. Clone some using the repo-clone command.');
     }
-    updateRepos(repos, branches, !argv.f);
+    updateRepos(repos, branches, !argv.fetch);
     process.exit(0);
 }