fastlane/lib/fastlane/actions/resign.rb in fastlane-2.82.0.beta.20180217010002 vs fastlane/lib/fastlane/actions/resign.rb in fastlane-2.82.0.beta.20180218010003

- old
+ new

@@ -57,10 +57,11 @@ [ FastlaneCore::ConfigItem.new(key: :ipa, env_name: "FL_RESIGN_IPA", description: "Path to the ipa file to resign. Optional if you use the _gym_ or _xcodebuild_ action", default_value: Actions.lane_context[SharedValues::IPA_OUTPUT_PATH], + default_value_dynamic: true, verify_block: proc do |value| UI.user_error!("Couldn't find ipa file at path '#{value}'") unless File.exist?(value) end), FastlaneCore::ConfigItem.new(key: :signing_identity, env_name: "FL_RESIGN_SIGNING_IDENTITY", @@ -73,9 +74,10 @@ optional: true), FastlaneCore::ConfigItem.new(key: :provisioning_profile, env_name: "FL_RESIGN_PROVISIONING_PROFILE", description: "Path to your provisioning_profile. Optional if you use _sigh_", default_value: Actions.lane_context[SharedValues::SIGH_PROFILE_PATH], + default_value_dynamic: true, is_string: false, verify_block: proc do |value| files = case value when Hash then value.values when Enumerable then value