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 2013/10/22 23:24:48 UTC

ios commit: CB-4805 - Update cordova/run and cordova/lib/install-device to use latest ios-deploy for iOS 7

Updated Branches:
  refs/heads/master 735813f52 -> e71f907b8


CB-4805 - Update cordova/run and cordova/lib/install-device to use latest ios-deploy for iOS 7


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

Branch: refs/heads/master
Commit: e71f907b8c07575c23abaa86b8a37fcd8a6fe8fb
Parents: 735813f
Author: Shazron Abdullah <sh...@apache.org>
Authored: Tue Oct 22 14:24:40 2013 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Tue Oct 22 14:24:40 2013 -0700

----------------------------------------------------------------------
 bin/templates/scripts/cordova/lib/install-device | 2 +-
 bin/templates/scripts/cordova/run                | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/e71f907b/bin/templates/scripts/cordova/lib/install-device
----------------------------------------------------------------------
diff --git a/bin/templates/scripts/cordova/lib/install-device b/bin/templates/scripts/cordova/lib/install-device
index 068f207..617442f 100755
--- a/bin/templates/scripts/cordova/lib/install-device
+++ b/bin/templates/scripts/cordova/lib/install-device
@@ -40,7 +40,7 @@ if [ ! -d "$DEVICE_APP_PATH" ]; then
 fi
 
 
-IOS_DEPLOY_MIN_VERSION="1.0.2"
+IOS_DEPLOY_MIN_VERSION="1.0.4"
 IOS_DEPLOY_LOCATION=$(which ios-deploy)
 if [ $? != 0 ]; then
     echo -e "\033[31mError: ios-deploy was not found. Please download, build and install version $IOS_DEPLOY_MIN_VERSION or greater from https://github.com/phonegap/ios-deploy into your path. Or 'npm install -g ios-deploy' using node.js: http://nodejs.org/\033[m"; exit 1;

http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/e71f907b/bin/templates/scripts/cordova/run
----------------------------------------------------------------------
diff --git a/bin/templates/scripts/cordova/run b/bin/templates/scripts/cordova/run
index dc3df61..5c6bd0d 100755
--- a/bin/templates/scripts/cordova/run
+++ b/bin/templates/scripts/cordova/run
@@ -110,7 +110,7 @@ source "$CORDOVA_PATH/check_reqs"
 
 # if device build found, run it first
 if [ -d "$DEVICE_APP_PATH" ] && ! "$USE_SIMULATOR"; then
-    IOS_DEPLOY_MIN_VERSION="1.0.2"
+    IOS_DEPLOY_MIN_VERSION="1.0.4"
     IOS_DEPLOY_LOCATION=$(which ios-deploy)
     if [ $? != 0 ]; then
         echo -e "\033[31mError: ios-deploy was not found. Please download, build and install version $IOS_DEPLOY_MIN_VERSION or greater from https://github.com/phonegap/ios-deploy into your path. Or 'npm install -g ios-deploy' using node.js: http://nodejs.org/\033[m"; exit 1;