You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2016/01/26 01:43:42 UTC

ios commit: Disable ios-deploy wifi mode when deploying to a device

Repository: cordova-ios
Updated Branches:
  refs/heads/master 842517eb7 -> 8f1535d93


Disable ios-deploy wifi mode when deploying to a device


Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/8f1535d9
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/8f1535d9
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/8f1535d9

Branch: refs/heads/master
Commit: 8f1535d9381851c17372f197830dc585b5245705
Parents: 842517e
Author: Malte Legenhausen <ml...@gmail.com>
Authored: Thu Jan 21 17:42:41 2016 +0100
Committer: Malte Legenhausen <ml...@gmail.com>
Committed: Fri Jan 22 08:56:02 2016 +0100

----------------------------------------------------------------------
 bin/lib/check_reqs.js                    | 2 +-
 bin/templates/scripts/cordova/lib/run.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/8f1535d9/bin/lib/check_reqs.js
----------------------------------------------------------------------
diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js
index a133e7d..31b1fab 100644
--- a/bin/lib/check_reqs.js
+++ b/bin/lib/check_reqs.js
@@ -25,7 +25,7 @@ var XCODEBUILD_MIN_VERSION = '6.0.0';
 var XCODEBUILD_NOT_FOUND_MESSAGE =
     'Please install version ' + XCODEBUILD_MIN_VERSION + ' or greater from App Store';
 
-var IOS_DEPLOY_MIN_VERSION = '1.8.0';
+var IOS_DEPLOY_MIN_VERSION = '1.8.3';
 var IOS_DEPLOY_NOT_FOUND_MESSAGE =
     'Please download, build and install version ' + IOS_DEPLOY_MIN_VERSION + ' or greater' +
     ' from https://github.com/phonegap/ios-deploy into your path, or do \'npm install -g ios-deploy\'';

http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/8f1535d9/bin/templates/scripts/cordova/lib/run.js
----------------------------------------------------------------------
diff --git a/bin/templates/scripts/cordova/lib/run.js b/bin/templates/scripts/cordova/lib/run.js
index 803931e..6a7d602 100644
--- a/bin/templates/scripts/cordova/lib/run.js
+++ b/bin/templates/scripts/cordova/lib/run.js
@@ -135,7 +135,7 @@ function deployToDevice(appPath, target, extraArgs) {
     if (target) {
         return spawn('ios-deploy', ['--justlaunch', '-d', '-b', appPath, '-i', target].concat(extraArgs));
     } else {
-        return spawn('ios-deploy', ['--justlaunch', '-d', '-b', appPath].concat(extraArgs));
+        return spawn('ios-deploy', ['--justlaunch', '--no-wifi', '-d', '-b', appPath].concat(extraArgs));
     }
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org