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

- old
+ new

@@ -86,44 +86,39 @@ def self.available_options [ FastlaneCore::ConfigItem.new(key: :username, short_option: "-u", env_name: "FL_SSH_USERNAME", - description: "Username", - is_string: true), + description: "Username"), FastlaneCore::ConfigItem.new(key: :password, short_option: "-p", env_name: "FL_SSH_PASSWORD", sensitive: true, description: "Password", - optional: true, - is_string: true), + optional: true), FastlaneCore::ConfigItem.new(key: :host, short_option: "-H", env_name: "FL_SSH_HOST", - description: "Hostname", - is_string: true), + description: "Hostname"), FastlaneCore::ConfigItem.new(key: :port, short_option: "-P", env_name: "FL_SSH_PORT", description: "Port", optional: true, - default_value: "22", - is_string: true), + default_value: "22"), FastlaneCore::ConfigItem.new(key: :commands, short_option: "-C", env_name: "FL_SSH_COMMANDS", description: "Commands", optional: true, - is_string: false, type: Array), FastlaneCore::ConfigItem.new(key: :log, short_option: "-l", env_name: "FL_SSH_LOG", description: "Log commands and output", optional: true, default_value: true, - is_string: false) + type: Boolean) ] end def self.output [