let them quotes help
This commit is contained in:
parent
9fd585b4c0
commit
cdbd65f204
@ -14,10 +14,10 @@ apiUrl=$(echo $b2_authorize_account | jq -r '.apiUrl')
|
||||
B2_TOKEN=$(echo $b2_authorize_account | jq -r '.authorizationToken')
|
||||
B2_BUCKET_ID=$(echo $b2_authorize_account | jq -r '.bucketId')
|
||||
|
||||
if [ -z $b2_authorize_account ]; then echo b2_authorize_account is empty && exit 1; fi
|
||||
if [ -z $apiUrl ]; then echo apiUrl is empty && exit 1; fi
|
||||
if [ -z $B2_TOKEN ]; then echo B2_TOKEN is empty && exit 1; fi
|
||||
if [ -z $B2_BUCKET_ID ]; then echo B2_BUCKET_ID is empty && exit 1; fi
|
||||
if [ -z "$b2_authorize_account" ]; then echo b2_authorize_account is empty; exit 1; fi
|
||||
if [ -z "$apiUrl" ]; then echo apiUrl is empty; exit 1; fi
|
||||
if [ -z "$B2_TOKEN" ]; then echo B2_TOKEN is empty; exit 1; fi
|
||||
if [ -z "$B2_BUCKET_ID" ]; then echo B2_BUCKET_ID is empty; exit 1; fi
|
||||
|
||||
UPLOAD_URL=$(curl -s -H "Authorization:$B2_TOKEN" -d '{"bucketId":"$B2_BUCKET_ID"}' $apiUrl/b2api/v2/b2_get_upload_url | jq -r '.uploadUrl')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user