From 6e8232078ab8f7a3ee50622975828816280db408 Mon Sep 17 00:00:00 2001 From: Max Moroz Date: Fri, 14 Feb 2020 13:23:20 -0800 Subject: [infra] Use wildcard in gsutil cp command as it lacks -T option. (#3396) --- infra/gcb/build_and_run_coverage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'infra/gcb/build_and_run_coverage.py') diff --git a/infra/gcb/build_and_run_coverage.py b/infra/gcb/build_and_run_coverage.py index cdb93d19..639e180d 100644 --- a/infra/gcb/build_and_run_coverage.py +++ b/infra/gcb/build_and_run_coverage.py @@ -186,7 +186,7 @@ def get_build_steps(project_dir): '-m', 'cp', '-r', - os.path.join(out, 'report'), + os.path.join(out, 'report', '*'), upload_report_url, ], }) @@ -202,7 +202,7 @@ def get_build_steps(project_dir): '-m', 'cp', '-r', - os.path.join(out, 'fuzzer_stats'), + os.path.join(out, 'fuzzer_stats', '*'), upload_fuzzer_stats_url, ], }) @@ -215,7 +215,7 @@ def get_build_steps(project_dir): '-m', 'cp', '-r', - os.path.join(out, 'logs'), + os.path.join(out, 'logs', '*'), UPLOAD_URL_FORMAT.format(project=project_name, type='logs', date=report_date), -- cgit v1.2.3