From 48e91ff9aa59850723fd620feeb64fecc4e27f88 Mon Sep 17 00:00:00 2001 From: Justin SB Date: Wed, 8 Oct 2014 08:39:10 -0700 Subject: [PATCH] Linux does not meet the iOS platform requirements --- tools/commands-cordova.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/commands-cordova.js b/tools/commands-cordova.js index dc0fe14185..9aa07dc5e4 100644 --- a/tools/commands-cordova.js +++ b/tools/commands-cordova.js @@ -1611,7 +1611,7 @@ _.extend(IOS.prototype, { if (!Host.isMac()) { log && Console.info("You are not running on OSX; we won't be able to install Xcode for local iOS development"); - return undefined; + return { acceptable: false, missing: [ "ios" ] }; } var result = { acceptable: true, missing: [] };