fix: puts, not print

Co-authored-by: Simon Legner <Simon.Legner@gmail.com>
pull/1480/head
Oliver Eyton-Williams 4 years ago committed by GitHub
parent 32c94604a6
commit 8eee612852
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -202,7 +202,7 @@ class DocsCLI < Thor
docs.each do |doc|
filename = "#{doc.path}.tar.gz"
print "[S3 bundle] Uploading #{filename}..."
puts "[S3 bundle] Uploading #{filename}..."
cmd = "aws s3 cp #{File.join(Docs.store_path, filename)} s3://devdocs-downloads/#{filename} --profile devdocs"
cmd << ' --dryrun' if options[:dryrun]
system(cmd)

Loading…
Cancel
Save