You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2013/02/09 00:02:18 UTC

git commit: 2.4.6. Adding output of xcode min reqs failing.

Updated Branches:
  refs/heads/master 51c505368 -> 43d65f9d9


2.4.6. Adding output of xcode min reqs failing.


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

Branch: refs/heads/master
Commit: 43d65f9d96d1cba420c9298967109b1c0d295ef2
Parents: 51c5053
Author: Fil Maj <ma...@gmail.com>
Authored: Fri Feb 8 15:06:14 2013 -0800
Committer: Fil Maj <ma...@gmail.com>
Committed: Fri Feb 8 15:06:14 2013 -0800

----------------------------------------------------------------------
 package.json               |    2 +-
 src/metadata/ios_parser.js |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/43d65f9d/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 7919dcc..4c3c157 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "cordova",
-  "version": "2.4.5",
+  "version": "2.4.6",
   "config":{
       "unsafe-perm":true
   },

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/43d65f9d/src/metadata/ios_parser.js
----------------------------------------------------------------------
diff --git a/src/metadata/ios_parser.js b/src/metadata/ios_parser.js
index 41da1b4..d80ab49 100644
--- a/src/metadata/ios_parser.js
+++ b/src/metadata/ios_parser.js
@@ -62,7 +62,7 @@ module.exports.check_requirements = function(callback) {
     // Check xcode + version.
     shell.exec('xcodebuild -version', {silent:true, async:true}, function(code, output) {
         if (code != 0) {
-            callback('Xcode is not installed. Cannot add iOS platform.');
+            callback('Xcode is not installed. Cannot add iOS platform. Output: ' + output);
         } else {
             var xc_version = output.split('\n')[0].split(' ')[1];
             if (semver.lt(xc_version, MIN_XCODE_VERSION)) {