Skip to content

Commit

Permalink
Don't copy package_dir name under gcs_archive_path
Browse files Browse the repository at this point in the history
Issue: 365150653
Issue: 393447640
Reviewed-on: youtube#4816
  • Loading branch information
briantting authored and dahlstrom-g committed Feb 4, 2025
1 parent 9f2c2ea commit a182f38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cobalt/devinfra/kokoro/bin/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ create_and_upload_nightly_archive () {

init_gcloud

"${GSUTIL}" cp -r "${package_dir}" "${gcs_archive_path}"
# Copy everything in package_dir but not its last path segment; gcs_archive_path already exists.
"${GSUTIL}" cp -r "${package_dir}/." "${gcs_archive_path}"
}

run_package_release_pipeline () {
Expand Down

0 comments on commit a182f38

Please sign in to comment.