Fix Jenkins Cross script to copy testdata properly

`gsutil` changed its cp behavior starting with version 4.46, we need to change how we call it in order to preserve the directory structure our tests are expecting.
pull/5562/head
Sharif Elgamal 2019-10-07 14:53:19 -07:00 committed by GitHub
parent 03c241db74
commit c7c7201757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,4 +63,4 @@ cp -r test/integration/testdata out/
# Don't upload the buildroot artifacts if they exist # Don't upload the buildroot artifacts if they exist
rm -r out/buildroot || true rm -r out/buildroot || true
gsutil -m cp -r out/* "gs://${bucket}/${ghprbPullId}/" gsutil -m cp -r out/ "gs://${bucket}/${ghprbPullId}/"