From 4a64a891cfa501f528fa572f4eebd44f1e48ebc3 Mon Sep 17 00:00:00 2001 From: bhandarivijay Date: Fri, 6 Mar 2026 12:27:40 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- scripts/to_gcs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/to_gcs.sh b/scripts/to_gcs.sh index 343b5ef..d3a3c04 100644 --- a/scripts/to_gcs.sh +++ b/scripts/to_gcs.sh @@ -22,8 +22,8 @@ if [[ -z $2 ]]; then echo "No GCS Output Bucket Specified" else if [ -d "$1" ] && [ $(ls -A "$1" | wc -l) -ne 0 ]; then - echo gsutil cp -R $1/* $2 - gsutil cp -R $1/* $2 + echo gcloud storage cp --recursive $1/* $2 + gcloud storage cp --recursive $1/* $2 else echo "No output generated." fi