From 861400563abee500682bea89161eabfcb86a3e60 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 31 Dec 2024 18:32:03 +0100 Subject: Read path automatically --- scripts/01-create-bucket.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/01-create-bucket.sh b/scripts/01-create-bucket.sh index fb853c9..364e098 100755 --- a/scripts/01-create-bucket.sh +++ b/scripts/01-create-bucket.sh @@ -1,6 +1,14 @@ #!/bin/sh -read -p "Enter 'order_products.csv' path: " path +path=$(find . -name 'order_products.csv' -print -quit) + +if [ -z "$path" ]; then + read -p "Enter 'order_products.csv' path: " path + if [ -z "$path" ] || [ ! -e "$path" ]; then + echo ">>>> Path not found..." + exit 1 + fi +fi gcloud storage buckets create gs://$BUCKET_NAME --location=eu gcloud storage buckets add-iam-policy-binding gs://${BUCKET_NAME} \ -- cgit v1.2.3-18-g5258