Skip to content

Commit a20d8b8

Browse files
Update gcs_uploader.py
1 parent bb98c4e commit a20d8b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/gha/gcs_uploader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def main(argv):
8585
for artifact in artifacts:
8686
dest = _local_path_to_gcs_uri(gcs_prefix, artifact, testapp_dir)
8787
logging.info("Creating %s", dest)
88-
subprocess.run(["gcloud", "storage", "cp", artifact, dest], check=True)
88+
subprocess.run([gcs.GCLOUD, "storage", "cp", artifact, dest], check=True)
8989
logging.info("Finished uploading to %s", gcs_prefix)
9090
logging.info(
9191
"Use 'gcloud storage cp <gs_uri> <local_path>' to copy an artifact locally.\n"

0 commit comments

Comments
 (0)