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 7FB00178D8 for ; Wed, 28 Jan 2015 08:41:26 +0000 (UTC) Received: (qmail 20558 invoked by uid 500); 28 Jan 2015 08:41:25 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 20529 invoked by uid 500); 28 Jan 2015 08:41:25 -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 20520 invoked by uid 99); 28 Jan 2015 08:41:25 -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; Wed, 28 Jan 2015 08:41:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 81E58E03EE; Wed, 28 Jan 2015 08:41:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: an-selm@apache.org To: commits@cordova.apache.org Message-Id: <99249b0a57154955952b5a69ffa47b31@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cordova-medic git commit: [INFRA-8588] Fixing build script bugs, with a focus on OS X. Date: Wed, 28 Jan 2015 08:41:24 +0000 (UTC) Repository: cordova-medic Updated Branches: refs/heads/master 7764f0ac6 -> 7a372b1bf [INFRA-8588] Fixing build script bugs, with a focus on OS X. Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/7a372b1b Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/7a372b1b Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/7a372b1b Branch: refs/heads/master Commit: 7a372b1bf45eed055588de989004eb509f38219a Parents: 7764f0a Author: Dmitry Blotsky Authored: Tue Jan 27 16:25:19 2015 -0800 Committer: Dmitry Blotsky Committed: Tue Jan 27 21:04:51 2015 -0800 ---------------------------------------------------------------------- cordova.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/7a372b1b/cordova.conf ---------------------------------------------------------------------- diff --git a/cordova.conf b/cordova.conf index 5e43393..f425a43 100644 --- a/cordova.conf +++ b/cordova.conf @@ -157,6 +157,7 @@ class PlatformTestBase(object): ShellCommand(command=["rm", "-f", "npm-shrinkwrap.json"], workdir='build/cordova-cli', haltOnFailure=False, description='Remove CLI SW'), ShellCommand(command=["npm", "install"], workdir='build/cordova-cli', haltOnFailure=True, description='Install CLI'), ShellCommand(command=["npm", "test"], workdir='build/cordova-cli', haltOnFailure=True, description='Test CLI'), + ShellCommand(command=["npm", "install"], workdir='build/cordova-js', haltOnFailure=True, description='Install JS'), ] def plugman_steps(self): @@ -182,7 +183,7 @@ class PlatformTestBase(object): ShellCommand(command=["cordova-coho/coho", "npm-link"], workdir='build', haltOnFailure=True, description='COHO npm-link'), # add --skiplink for createmobilespec since # it requires cordova-plugman repo to be cloned - ShellCommand(command=["cordova-mobile-spec/createmobilespec/createmobilespec", "--" + platform, "mobilespec", "--debug", "--skiplink"], workdir='build', haltOnFailure=True, description='Run createmobilespec'), + ShellCommand(command=["node", "cordova-mobile-spec/createmobilespec/createmobilespec.js", "--" + platform, "mobilespec", "--debug", "--skiplink"], workdir='build', haltOnFailure=True, description='Run createmobilespec'), ShellCommand(command=["node", "medic/updateconfig.js", "--" + self.platform], workdir='build', haltOnFailure=True, description='Update config') ] --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org