Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E2DCC200CC6 for ; Tue, 18 Jul 2017 12:13:52 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E16E6166A23; Tue, 18 Jul 2017 10:13:52 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 59B78166A21 for ; Tue, 18 Jul 2017 12:13:52 +0200 (CEST) Received: (qmail 20810 invoked by uid 500); 18 Jul 2017 10:13:51 -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 20801 invoked by uid 99); 18 Jul 2017 10:13:51 -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; Tue, 18 Jul 2017 10:13:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B5775DFAE0; Tue, 18 Jul 2017 10:13:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: alsorokin@apache.org To: commits@cordova.apache.org Message-Id: <9092772b32ee4bde9f0bc8156294d500@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cordova-paramedic git commit: CB-13028 Fix typo Date: Tue, 18 Jul 2017 10:13:50 +0000 (UTC) archived-at: Tue, 18 Jul 2017 10:13:53 -0000 Repository: cordova-paramedic Updated Branches: refs/heads/master aecb6c444 -> 76dc9e637 CB-13028 Fix typo Project: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/commit/76dc9e63 Tree: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/tree/76dc9e63 Diff: http://git-wip-us.apache.org/repos/asf/cordova-paramedic/diff/76dc9e63 Branch: refs/heads/master Commit: 76dc9e63716d50a42caa0a44be8099d49246af80 Parents: aecb6c4 Author: Alexander Sorokin Authored: Tue Jul 18 13:13:40 2017 +0300 Committer: Alexander Sorokin Committed: Tue Jul 18 13:13:40 2017 +0300 ---------------------------------------------------------------------- lib/paramedic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-paramedic/blob/76dc9e63/lib/paramedic.js ---------------------------------------------------------------------- diff --git a/lib/paramedic.js b/lib/paramedic.js index c4eef57..f91a992 100644 --- a/lib/paramedic.js +++ b/lib/paramedic.js @@ -312,7 +312,7 @@ ParamedicRunner.prototype.runLocalTests = function () { self.setPermissions(); logger.normal('cordova-paramedic: running command ' + command); - if (self.config.getPlatformId() === util.BROWSER) { + if (!self.config.getPlatformId() === util.BROWSER) { return execPromise(command); } runProcess = cp.exec(command, function () { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org