fastlane/lib/fastlane/actions/s3.rb in fastlane-2.94.0.beta.20180425050017 vs fastlane/lib/fastlane/actions/s3.rb in fastlane-2.94.0.beta.20180426050049
- old
+ new
@@ -314,11 +314,11 @@
def self.details
[
"Upload a new build to Amazon S3 to distribute the build to beta testers.",
"Works for both Ad Hoc and Enterprise signed applications. This step will generate the necessary HTML, plist, and version files for you.",
"It is recommended to **not** store the AWS access keys in the `Fastfile`. The uploaded `version.json` file provides an easy way for apps to poll if a new update is available."
- ].join(" ")
+ ].join("\n")
end
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :ipa,
@@ -447,11 +447,13 @@
def self.category
:deprecated
end
def self.deprecated_notes
- "Please use the `aws_s3` plugin instead.\n" \
+ [
+ "Please use the `aws_s3` plugin instead.",
"Install using `fastlane add_plugin aws_s3`."
+ ].join("\n")
end
end
# rubocop:enable Metrics/ClassLength
end
end