[libc++] Quietly scp tarballs over with the remote executor
Otherwise, the progress-meter is printed.
Cr-Mirrored-From: https://chromium.googlesource.com/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: 7f482461750b621818138acc64bbe6a15da209db
diff --git a/utils/ssh.py b/utils/ssh.py
index 4bb983e..6329cb4 100644
--- a/utils/ssh.py
+++ b/utils/ssh.py
@@ -37,7 +37,7 @@
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()