Print the attempted command when xcrun wrapper fails

This commit is contained in:
Jack Nagel 2014-04-21 11:03:42 -05:00
parent 4b4b6e183e
commit 9d72555644

View File

@ -37,7 +37,9 @@ try `/usr/bin/xcrun --find #{arg0} 2>/dev/null`.chomp
ENV["PATH"].split(File::PATH_SEPARATOR).each { |p| try File.join(p, arg0) } ENV["PATH"].split(File::PATH_SEPARATOR).each { |p| try File.join(p, arg0) }
abort <<-EOS abort <<-EOS
Your Xcode and or CLT are mis-configured. Try some or all of the following: Failed to execute: #{arg0} #{ARGV.join(" ")}
xcodebuild -license
sudo xcode-select -switch /path/to/Xcode.app Xcode and/or the CLT appear to be misconfigured. Try one or both of the following:
xcodebuild -license
sudo xcode-select -switch /path/to/Xcode.app
EOS EOS