[libc++] Quietly scp tarballs over with the remote executor

Otherwise, the progress-meter is printed.
This commit is contained in:
Louis Dionne 2020-04-24 14:47:09 -04:00
parent 42431da895
commit 7f48246175
1 changed files with 1 additions and 1 deletions

View File

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