fastlane/lib/fastlane/actions/sh.rb in fastlane_hotfix-2.165.1 vs fastlane/lib/fastlane/actions/sh.rb in fastlane_hotfix-2.187.0
- old
+ new
@@ -22,20 +22,18 @@
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :command,
description: 'Shell command to be executed',
- optional: false,
- is_string: true),
+ optional: false),
FastlaneCore::ConfigItem.new(key: :log,
description: 'Determines whether fastlane should print out the executed command itself and output of the executed command. If command line option --troubleshoot is used, then it overrides this option to true',
optional: true,
- is_string: false,
+ type: Boolean,
default_value: true),
FastlaneCore::ConfigItem.new(key: :error_callback,
description: 'A callback invoked with the command output if there is a non-zero exit status',
optional: true,
- is_string: false,
type: :string_callback,
default_value: nil)
]
end