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 ABF12173D9 for ; Fri, 17 Oct 2014 23:37:21 +0000 (UTC) Received: (qmail 32658 invoked by uid 500); 17 Oct 2014 23:37:21 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 32630 invoked by uid 500); 17 Oct 2014 23:37:21 -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 32621 invoked by uid 99); 17 Oct 2014 23:37:21 -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, 17 Oct 2014 23:37:21 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1E86C9C74A9; Fri, 17 Oct 2014 23:37:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: shazron@apache.org To: commits@cordova.apache.org Message-Id: <772e20d189bd4086af22d8538b29a9c8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ios commit: Fix cordova/lib/list-started-emulators for Xcode 6 Date: Fri, 17 Oct 2014 23:37:21 +0000 (UTC) Repository: cordova-ios Updated Branches: refs/heads/master 21f2749c5 -> 442606a19 Fix cordova/lib/list-started-emulators for Xcode 6 Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/442606a1 Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/442606a1 Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/442606a1 Branch: refs/heads/master Commit: 442606a194a1bbf54a755614500a4179bf7a59c3 Parents: 21f2749 Author: Shazron Abdullah Authored: Fri Oct 17 16:37:29 2014 -0700 Committer: Shazron Abdullah Committed: Fri Oct 17 16:37:29 2014 -0700 ---------------------------------------------------------------------- bin/templates/scripts/cordova/lib/list-started-emulators | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/442606a1/bin/templates/scripts/cordova/lib/list-started-emulators ---------------------------------------------------------------------- diff --git a/bin/templates/scripts/cordova/lib/list-started-emulators b/bin/templates/scripts/cordova/lib/list-started-emulators index ccdb1a7..badab2c 100755 --- a/bin/templates/scripts/cordova/lib/list-started-emulators +++ b/bin/templates/scripts/cordova/lib/list-started-emulators @@ -20,7 +20,7 @@ set -e -SIM_RUNNING=$(ps aux | grep -i "[i]Phone Simulator" | wc -l) +SIM_RUNNING=$(ps aux | grep -i "[i]OS Simulator" | wc -l) if [ $SIM_RUNNING == 0 ]; then echo "No emulators are running." exit 1 --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org