From 7f482461750b621818138acc64bbe6a15da209db Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Fri, 24 Apr 2020 14:47:09 -0400 Subject: [PATCH] [libc++] Quietly scp tarballs over with the remote executor Otherwise, the progress-meter is printed. --- libcxx/utils/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/utils/ssh.py b/libcxx/utils/ssh.py index 4bb983e..6329cb4 100644 --- a/libcxx/utils/ssh.py +++ b/libcxx/utils/ssh.py @@ -37,7 +37,7 @@ def main(): commandLine = remaining[1:] # Skip the '--' ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command] - scp = lambda src, dst: ['scp', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)] + scp = lambda src, dst: ['scp', '-q', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)] # Create a temporary directory where the test will be run. tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip() -- 2.7.4