diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-01-08 13:55:47 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-01-08 13:55:47 +0100 |
commit | 975715da5b2c1d31be466b17bc7a25c1999ed28d (patch) | |
tree | df28c86180c753d28ce563daeed272c0bb833540 /scripts/01-create-bucket.sh | |
parent | 83c3fa60c752486d2b4d0001b6fad3ee31fb9672 (diff) |
Use params instead of `read` function
Diffstat (limited to 'scripts/01-create-bucket.sh')
-rwxr-xr-x | scripts/01-create-bucket.sh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/scripts/01-create-bucket.sh b/scripts/01-create-bucket.sh index 364e098..30bedc0 100755 --- a/scripts/01-create-bucket.sh +++ b/scripts/01-create-bucket.sh @@ -1,17 +1,18 @@ #!/bin/sh -path=$(find . -name 'order_products.csv' -print -quit) +path="$1" -if [ -z "$path" ]; then - read -p "Enter 'order_products.csv' path: " path - if [ -z "$path" ] || [ ! -e "$path" ]; then +if [ -z "$path" ] || [ ! -e "$path" ]; then + path=$(find . -name 'order_products.csv' -print -quit) + + if [ -z "$path" ]; then echo ">>>> Path not found..." exit 1 fi fi -gcloud storage buckets create gs://$BUCKET_NAME --location=eu +gcloud storage buckets create gs://${BUCKET_NAME} --location=eu gcloud storage buckets add-iam-policy-binding gs://${BUCKET_NAME} \ --member="serviceAccount:${SERVICE_ACCOUNT}@${PROJECT}.iam.gserviceaccount.com" \ --role="roles/storage.objectCreator" -gcloud storage cp $path gs://$BUCKET_NAME/input/ +gcloud storage cp $path gs://${BUCKET_NAME}/input/ |