Explorar o código

fix: puts, not print

Co-authored-by: Simon Legner <Simon.Legner@gmail.com>
Oliver Eyton-Williams %!s(int64=4) %!d(string=hai) anos
pai
achega
8eee612852
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lib/tasks/docs.thor

+ 1 - 1
lib/tasks/docs.thor

@@ -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)