fastlane/lib/fastlane/actions/scp.rb in fastlane-2.186.0 vs fastlane/lib/fastlane/actions/scp.rb in fastlane-2.187.0
- old
+ new
@@ -36,43 +36,37 @@
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",
description: "Password",
sensitive: true,
- 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: :upload,
short_option: "-U",
env_name: "FL_SCP_UPLOAD",
description: "Upload",
optional: true,
- is_string: false,
type: Hash),
FastlaneCore::ConfigItem.new(key: :download,
short_option: "-D",
env_name: "FL_SCP_DOWNLOAD",
description: "Download",
optional: true,
- is_string: false,
type: Hash)
]
end