aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/gcb
diff options
context:
space:
mode:
authorGravatar Max Moroz <mmoroz@chromium.org>2020-02-14 13:23:20 -0800
committerGravatar GitHub <noreply@github.com>2020-02-14 13:23:20 -0800
commit6e8232078ab8f7a3ee50622975828816280db408 (patch)
tree9f90f022334bd65d3b922218d4aa79921e572ee1 /infra/gcb
parentc5afe95dc8d1b1bffef81192332e38e120a0696d (diff)
[infra] Use wildcard in gsutil cp command as it lacks -T option. (#3396)
Diffstat (limited to 'infra/gcb')
-rw-r--r--infra/gcb/build_and_run_coverage.py6
1 files changed, 3 insertions, 3 deletions
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),