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 6B16A17D26 for ; Thu, 29 Jan 2015 19:46:31 +0000 (UTC) Received: (qmail 8321 invoked by uid 500); 29 Jan 2015 19:46:32 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 8294 invoked by uid 500); 29 Jan 2015 19:46:32 -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 8285 invoked by uid 99); 29 Jan 2015 19:46:31 -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; Thu, 29 Jan 2015 19:46:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D8E9CE055B; Thu, 29 Jan 2015 19:46:31 +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 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cordova-lib git commit: CB-8377 Fixed tag parsing (close #156) Date: Thu, 29 Jan 2015 19:46:31 +0000 (UTC) Repository: cordova-lib Updated Branches: refs/heads/master 6fd8e23fd -> 51d422f91 CB-8377 Fixed tag parsing (close #156) Was broken by a recent commit (was never released) Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/51d422f9 Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/51d422f9 Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/51d422f9 Branch: refs/heads/master Commit: 51d422f9111849c2cc24b3f09e2214673f625acf Parents: 6fd8e23 Author: alsorokin Authored: Thu Jan 29 15:16:40 2015 +0300 Committer: Andrew Grieve Committed: Thu Jan 29 14:45:10 2015 -0500 ---------------------------------------------------------------------- cordova-lib/src/plugman/prepare.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/51d422f9/cordova-lib/src/plugman/prepare.js ---------------------------------------------------------------------- diff --git a/cordova-lib/src/plugman/prepare.js b/cordova-lib/src/plugman/prepare.js index 79d86d8..763605b 100644 --- a/cordova-lib/src/plugman/prepare.js +++ b/cordova-lib/src/plugman/prepare.js @@ -133,7 +133,7 @@ module.exports = function handlePrepare(project_dir, platform, plugins_dir, www_ if (module.merges.length > 0) { obj.merges = module.merges.map(function(o) { return o.target; }); } - if (module.runs.length > 0) { + if (module.runs) { obj.runs = true; } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org