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

- old
+ new

@@ -45,9 +45,10 @@ def self.available_options [ FastlaneCore::ConfigItem.new(key: :archive_path, description: 'Path to your xcarchive file. Optional if you use the `xcodebuild` action', default_value: Actions.lane_context[SharedValues::XCODEBUILD_ARCHIVE], + default_value_dynamic: true, optional: true, env_name: 'DSYM_ZIP_XCARCHIVE_PATH', verify_block: proc do |value| UI.user_error!("Couldn't find xcarchive file at path '#{value}'") if !Helper.test? && !File.exist?(value) end),