fastlane/lib/fastlane/actions/copy_artifacts.rb in fastlane_hotfix-2.165.1 vs fastlane/lib/fastlane/actions/copy_artifacts.rb in fastlane_hotfix-2.187.0

- old
+ new

@@ -55,25 +55,24 @@ def self.available_options [ FastlaneCore::ConfigItem.new(key: :keep_original, description: "Set this to false if you want move, rather than copy, the found artifacts", - is_string: false, + type: Boolean, optional: true, default_value: true), FastlaneCore::ConfigItem.new(key: :target_path, description: "The directory in which you want your artifacts placed", - is_string: false, optional: false, default_value: 'artifacts'), FastlaneCore::ConfigItem.new(key: :artifacts, description: "An array of file patterns of the files/folders you want to preserve", - is_string: false, + type: Array, optional: false, default_value: []), FastlaneCore::ConfigItem.new(key: :fail_on_missing, description: "Fail when a source file isn't found", - is_string: false, + type: Boolean, optional: true, default_value: false) ] end