lib/gym/error_handler.rb in gym-1.11.3 vs lib/gym/error_handler.rb in gym-1.12.0
- old
+ new
@@ -81,17 +81,25 @@
print "A general code signing error occurred. Make sure you passed a valid"
print "provisioning profile and code signing identity."
when /expected one of \{\}/
print "It seems like you ran into this radar"
print "https://openradar.appspot.com/radar?id=4952000420642816"
- print "You can temporary use the :use_legacy_build_api option to get the build to work again"
+ print "You can temporarily use the :use_legacy_build_api option to work around the issue:"
+ print "In your Fastfile:"
+ print " gym(use_legacy_build_api: true)"
+ print "On the command line:"
+ print " gym --use_legacy_build_api"
when /IDEDistributionErrorDomain error 1/
when /Error Domain=IDEDistributionErrorDomain Code=/
standard_output = read_standard_output output
print standard_output if standard_output
print "There was an error exporting your application"
print "Unfortunately the new Xcode export API is unstable and causes problems on some projects"
- print "You can temporary use the :use_legacy_build_api option to get the build to work again"
+ print "You can temporarily use the :use_legacy_build_api option to work around the issue:"
+ print "In your Fastfile:"
+ print " gym(use_legacy_build_api: true)"
+ print "On the command line:"
+ print " gym --use_legacy_build_api"
end
print_full_log_path
UI.user_error!("Error packaging up the application")
end