@@ -67,7 +67,7 @@ azure_blob_check() {
67
67
debug " $dest_account "
68
68
debug " $dest_container "
69
69
debug " $dest_blob "
70
- local dest_key=$( _azure_get_account_key $dest_account )
70
+ local dest_key=$( _azure_get_account_key $dest_account ) || exit 1
71
71
debug " $dest_key "
72
72
local result=$( az storage blob exists \
73
73
--container-name $dest_container \
@@ -85,8 +85,8 @@ azure_blob_copy() {
85
85
86
86
read source_account source_container source_blob <<< " $(echo $source | sed 's:/: :'| sed 's:/: :')"
87
87
read dest_account dest_container dest_blob <<< " $(echo $dest | sed 's:/: :'| sed 's:/: :')"
88
- local source_key=$( _azure_get_account_key $source_account )
89
- local dest_key=$( _azure_get_account_key $dest_account )
88
+ local source_key=$( _azure_get_account_key $source_account ) || exit 1
89
+ local dest_key=$( _azure_get_account_key $dest_account ) || exit 1
90
90
az storage blob copy start \
91
91
--source-account-name $source_account \
92
92
--source-account-key $source_key \
@@ -121,7 +121,7 @@ _azure_get_account_key() {
121
121
declare group=${2}
122
122
123
123
if [[ -z " $group " ]]; then
124
- group=$( _azure_get_account_group ${storage} )
124
+ group=$( _azure_get_account_group ${storage} ) || exit 1
125
125
fi
126
126
127
127
local account_key=$( az storage account keys list --resource-group $group --account-name $storage --output json | jq -r ' .[0].value' )
@@ -135,7 +135,7 @@ _azure_get_account_key() {
135
135
azure_latest_vhd_by_prefix () {
136
136
declare imageName=${1:? required: imageName prefix like cloudbreak-2016-02-24}
137
137
138
- local key=$( _azure_get_account_key $ARM_STORAGE_ACCOUNT )
138
+ local key=$( _azure_get_account_key $ARM_STORAGE_ACCOUNT ) || exit 1
139
139
az storage blob list \
140
140
--account-name $ARM_STORAGE_ACCOUNT \
141
141
--account-key $key \
0 commit comments