fastlane/lib/fastlane/actions/resign.rb in fastlane-2.131.0.beta.20190910200104 vs fastlane/lib/fastlane/actions/resign.rb in fastlane-2.131.0.beta.20190911200010

- old
+ new

@@ -24,11 +24,11 @@ signing_identity: "iPhone Distribution: Luka Mirosevic (0123456789)", provisioning_profile: "path/to/profile", # can omit if using the _sigh_ action )', '# You may provide multiple provisioning profiles if the application contains nested # applications or app extensions, which need their own provisioning profile. - # You can do so by passing an array of provisiong profile strings or a hash + # You can do so by passing an array of provisioning profile strings or a hash # that associates provisioning profile values to bundle identifier keys. resign( ipa: "path/to/ipa", # can omit if using the `ipa` action signing_identity: "iPhone Distribution: Luka Mirosevic (0123456789)", provisioning_profile: { @@ -73,10 +73,10 @@ when Hash then value.values when Enumerable then value else [value] end files.each do |file| - UI.user_error!("Couldn't find provisiong profile at path '#{file}'") unless File.exist?(file) + UI.user_error!("Couldn't find provisioning profile at path '#{file}'") unless File.exist?(file) end end), FastlaneCore::ConfigItem.new(key: :version, env_name: "FL_RESIGN_VERSION", description: "Version number to force resigned ipa to use. Updates both `CFBundleShortVersionString` and `CFBundleVersion` values in `Info.plist`. Applies for main app and all nested apps or extensions",