Skip to content

Commit 72cb009

Browse files
Add recursive flag
1 parent e6519ca commit 72cb009

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/ci/upload-benchmark

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ DEFAULT_BUCKET = os.environ.get('PERF_RESULTS_BUCKET')
1010
def main(args):
1111
source = args.directory
1212
destination = args.s3_location
13-
check_call('aws s3 cp %s %s' % (source, destination), shell=True)
13+
check_call(
14+
'aws s3 cp --recursive %s %s' % (source, destination), shell=True)
1415

1516

1617
if __name__ == "__main__":

0 commit comments

Comments
 (0)