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 EB5C218BE6 for ; Fri, 28 Aug 2015 21:02:22 +0000 (UTC) Received: (qmail 68325 invoked by uid 500); 28 Aug 2015 21:02:17 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 68297 invoked by uid 500); 28 Aug 2015 21:02:17 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 68288 invoked by uid 99); 28 Aug 2015 21:02:17 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Aug 2015 21:02:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 99E6AE0A4E; Fri, 28 Aug 2015 21:02:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: steven@apache.org To: commits@cordova.apache.org Message-Id: <0085ed520c3c41fcacad02c34c679a0c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cordova-coho git commit: fixed issue with generating blackberry cordova.js when releasing Date: Fri, 28 Aug 2015 21:02:17 +0000 (UTC) Repository: cordova-coho Updated Branches: refs/heads/master 73b06c365 -> 459ec62fd fixed issue with generating blackberry cordova.js when releasing Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/459ec62f Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/459ec62f Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/459ec62f Branch: refs/heads/master Commit: 459ec62fd8e7a35a6e16cf1b6c1785e77338367f Parents: 73b06c3 Author: Steve Gill Authored: Fri Aug 28 14:02:04 2015 -0700 Committer: Steve Gill Committed: Fri Aug 28 14:02:04 2015 -0700 ---------------------------------------------------------------------- src/platform-release.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/459ec62f/src/platform-release.js ---------------------------------------------------------------------- diff --git a/src/platform-release.js b/src/platform-release.js index becd1f5..f6e356c 100644 --- a/src/platform-release.js +++ b/src/platform-release.js @@ -80,7 +80,9 @@ var hasBuiltJs = ''; function *updateJsSnapshot(repo, version) { function *ensureJsIsBuilt() { var cordovaJsRepo = repoutil.getRepoById('js'); - + if (repo.id === 'blackberry') { + repo.id = 'blackberry10'; + } if (hasBuiltJs != version) { yield repoutil.forEachRepo([cordovaJsRepo], function*() { yield gitutil.stashAndPop(cordovaJsRepo, function*() { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org