Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 68447CF4D for ; Fri, 21 Jun 2013 19:10:13 +0000 (UTC) Received: (qmail 25974 invoked by uid 500); 21 Jun 2013 19:10:13 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 25918 invoked by uid 500); 21 Jun 2013 19:10:13 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 25903 invoked by uid 99); 21 Jun 2013 19:10:13 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Jun 2013 19:10:13 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id F119882BFD1; Fri, 21 Jun 2013 19:10:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org Date: Fri, 21 Jun 2013 19:10:12 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: jake -> grunt Updated Branches: refs/heads/master 5f13c51ce -> 46c5d79f9 jake -> grunt Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/7725f1cc Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/7725f1cc Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/7725f1cc Branch: refs/heads/master Commit: 7725f1ccdd8877e5f2e29e94302299a067e0380c Parents: 5f13c51 Author: Andrew Grieve Authored: Fri Jun 21 15:05:11 2013 -0400 Committer: Andrew Grieve Committed: Fri Jun 21 15:05:11 2013 -0400 ---------------------------------------------------------------------- coho | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/7725f1cc/coho ---------------------------------------------------------------------- diff --git a/coho b/coho index 10f5403..663353b 100755 --- a/coho +++ b/coho @@ -831,19 +831,19 @@ function configureReleaseCommandFlags(opt) { return argv; } -var hasRunJake = false; +var hasBuiltJs = false; function updateJsSnapshot(repo, version, branchName) { function ensureJsIsBuilt() { var cordovaJsRepo = getRepoById('js'); - if (!hasRunJake) { + if (!hasBuiltJs) { forEachRepo([cordovaJsRepo], function() { var actualCurTag = retrieveCurrentTagName(); if (actualCurTag != version) { fatal('Not preparing branches since cordova-js is not at the version tag. (it\'s at ' + actualCurTag + ')'); } - execHelper('jake'); - hasRunJake = true; + execHelper('grunt cordovajs'); + hasBuiltJs = true; }); } }