lib/gym/error_handler.rb in gym-1.6.1 vs lib/gym/error_handler.rb in gym-1.6.2
- old
+ new
@@ -8,27 +8,27 @@
# 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/fastlane/sigh) to download and install the provisioning profile"
+ 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/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/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/fastlane/sigh) to download and install the provisioning profile"
+ 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/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/fastlane/sigh) to download and install the provisioning profile"
+ 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/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"
@@ -97,9 +97,10 @@
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/blob/master/docs/CodeSigning.md"
+ 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)
m = /Created bundle at path '(.*)'/.match(output)