You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by dr...@apache.org on 2013/10/28 14:30:52 UTC

git commit: change to use ios-deploy instead of fruitstrap

Updated Branches:
  refs/heads/master 57da03f0e -> 0f8005edb


change to use ios-deploy instead of fruitstrap


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

Branch: refs/heads/master
Commit: 0f8005edb517e367b0cefbebb89875debf7117b6
Parents: 57da03f
Author: David Kemp <dr...@chromium.org>
Authored: Mon Oct 28 09:29:54 2013 -0400
Committer: David Kemp <dr...@chromium.org>
Committed: Mon Oct 28 09:29:54 2013 -0400

----------------------------------------------------------------------
 package.json                   | 3 ++-
 src/build/makers/ios/deploy.js | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/0f8005ed/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index c012127..48c68f3 100644
--- a/package.json
+++ b/package.json
@@ -14,7 +14,8 @@
     "ncallbacks": "1.0.0",
     "mime": "1.2.9",
     "optimist": "0.3.5",
-    "glob":"3.2.6" 
+    "glob":"3.2.6", 
+    "ios-deploy":"1.0.4"
   },
   "devDependencies": {
     "elementtree": "0.1.4",

http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/0f8005ed/src/build/makers/ios/deploy.js
----------------------------------------------------------------------
diff --git a/src/build/makers/ios/deploy.js b/src/build/makers/ios/deploy.js
index 870d88a..fbdeadf 100644
--- a/src/build/makers/ios/deploy.js
+++ b/src/build/makers/ios/deploy.js
@@ -20,7 +20,7 @@ var path         = require('path'),
     cp           = require('child_process');
 
 var root = path.join(__dirname, '..', '..', '..', '..');
-var fruitstrap = path.join(root, 'node_modules', 'fruitstrap', 'fruitstrap');
+var fruitstrap = path.join(root, 'node_modules', 'ios-deploy', 'ios-deploy');
 // current fruitstrap dependency has two binaries, uninstall exists under the "listdevices" one
 var listdevices = path.join(root, 'node_modules', 'fruitstrap', 'listdevices');
 var failures=false;