lib/gym/error_handler.rb in gym-1.9.0 vs lib/gym/error_handler.rb in gym-1.10.0
- old
+ new
@@ -10,34 +10,34 @@
case output
when /Your build settings specify a provisioning profile with the UUID/
print "Invalid code signing settings"
print "Your project defines a provisioning profile which doesn't exist on your local machine"
print "You can use sigh (https://github.com/fastlane/fastlane/tree/master/sigh) to download and install the provisioning profile"
- print "Follow this guide: https://github.com/fastlane/fastlane/tree/master/fastlane/docs/Codesigning"
+ print "Follow this guide: https://docs.fastlane.tools/codesigning/GettingStarted/"
when /Provisioning profile does not match bundle identifier/
print "Invalid code signing settings"
print "Your project defines a provisioning profile that doesn't match the bundle identifier of your app"
print "Make sure you use the correct provisioning profile for this app"
print "Take a look at the ouptput above for more information"
- print "You can follow this guide: https://github.com/fastlane/fastlane/tree/master/fastlane/docs/Codesigning"
+ print "You can follow this guide: https://docs.fastlane.tools/codesigning/GettingStarted/"
when /provisioning profiles matching the bundle identifier .(.*)./ # the . around the (.*) are for the strange "
print "You don't have the provisioning profile for '#{$1}' installed on the local machine"
print "Make sure you have the profile on this computer and it's properly installed"
print "You can use sigh (https://github.com/fastlane/fastlane/tree/master/sigh) to download and install the provisioning profile"
- print "Follow this guide: https://github.com/fastlane/fastlane/tree/master/fastlane/docs/Codesigning"
+ print "Follow this guide: https://docs.fastlane.tools/codesigning/GettingStarted/"
when /matching the bundle identifier .(.*). were found/ # the . around the (.*) are for the strange "
print "You don't have a provisioning profile for the bundle identifier '#{$1}' installed on the local machine"
print "Make sure you have the profile on this computer and it's properly installed"
print "You can use sigh (https://github.com/fastlane/fastlane/tree/master/sigh) to download and install the provisioning profile"
- print "Follow this guide: https://github.com/fastlane/fastlane/tree/master/fastlane/docs/Codesigning"
+ print "Follow this guide: https://docs.fastlane.tools/codesigning/GettingStarted/"
# Insert more code signing specific errors here
when /code signing is required/
print "Your project settings define invalid code signing settings"
print "To generate an ipa file you need to enable code signing for your project"
print "Additionally make sure you have a code signing identity set"
- print "Follow this guide: https://github.com/fastlane/fastlane/tree/master/fastlane/docs/Codesigning"
+ print "Follow this guide: https://docs.fastlane.tools/codesigning/GettingStarted/"
when /US\-ASCII/
print "Your shell environment is not correctly configured"
print "Instead of UTF-8 your shell uses US-ASCII"
print "Please add the following to your '~/.bashrc':"
print ""
@@ -97,10 +97,10 @@
def handle_empty_archive
print "The generated archive is invalid, this can have various reasons:"
print "Usually it's caused by the `Skip Install` option in Xcode, set it to `NO`"
print "For more information visit https://developer.apple.com/library/ios/technotes/tn2215/_index.html"
print "Also, make sure to have a valid code signing identity and provisioning profile installed"
- print "Follow this guide to setup code signing https://github.com/fastlane/fastlane/tree/master/fastlane/docs/Codesigning"
+ print "Follow this guide to setup code signing https://docs.fastlane.tools/codesigning/GettingStarted/"
print "If your intention was only to export an ipa be sure to provide a valid archive at the archive path."
UI.user_error!("Archive invalid")
end
def find_standard_output_path(output)