lib/gym/error_handler.rb in gym-1.3.0 vs lib/gym/error_handler.rb in gym-1.4.0
- old
+ new
@@ -8,35 +8,35 @@
# The order of the handling below is import
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/KrauseFx/sigh) to download and install the provisioning profile"
- print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
+ print "You can use sigh (https://github.com/fastlane/sigh) to download and install the provisioning profile"
+ print "Follow this guide: https://github.com/fastlane/fastlane/blob/master/docs/CodeSigning.md"
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/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
+ print "You can follow this guide: https://github.com/fastlane/fastlane/blob/master/docs/CodeSigning.md"
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/KrauseFx/sigh) to download and install the provisioning profile"
- print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
+ print "You can use sigh (https://github.com/fastlane/sigh) to download and install the provisioning profile"
+ print "Follow this guide: https://github.com/fastlane/fastlane/blob/master/docs/CodeSigning.md"
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/KrauseFx/sigh) to download and install the provisioning profile"
- print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
+ print "You can use sigh (https://github.com/fastlane/sigh) to download and install the provisioning profile"
+ print "Follow this guide: https://github.com/fastlane/fastlane/blob/master/docs/CodeSigning.md"
# 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/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
+ print "Follow this guide: https://github.com/fastlane/fastlane/blob/master/docs/CodeSigning.md"
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 ""
@@ -96,10 +96,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/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
+ print "Follow this guide to setup code signing https://github.com/fastlane/fastlane/blob/master/docs/CodeSigning.md"
raise "Archive invalid"
end
def find_standard_output_path(output)
m = /Created bundle at path '(.*)'/.match(output)