From d2a2293d9fb5647cb20159f20c9650ce3018157f Mon Sep 17 00:00:00 2001 From: Corporate Gadfly Date: Mon, 4 May 2026 18:14:56 -0400 Subject: [PATCH] Modify S3 copy command to suppress progress output Added --no-progress flag to S3 copy command. Signed-off-by: Corporate Gadfly --- tasks/upload.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/upload.rake b/tasks/upload.rake index 1c519d5bc6..60c802d94d 100644 --- a/tasks/upload.rake +++ b/tasks/upload.rake @@ -44,7 +44,7 @@ namespace :vox do path = "s3://#{bucket}/#{component}/#{args[:tag]}" files.each do |f| f = `cygpath -m #{f}`.chomp if os =~ /windows/ - run_command("#{s3} cp #{f} #{path}/#{File.basename(f)}", silent: false) + run_command("#{s3} cp #{f} #{path}/#{File.basename(f)} --no-progress", silent: false) end end end