Commit 622464ff authored by Christophe B Billheimer's avatar Christophe B Billheimer
Browse files

fix error message for _get_zone_id

parent b45a44e4
...@@ -226,7 +226,7 @@ _get_zone_id() { ...@@ -226,7 +226,7 @@ _get_zone_id() {
_zone_id="$(echo "$_response" | _egrep_o 'zone\/[0-9]+')" _zone_id="$(echo "$_response" | _egrep_o 'zone\/[0-9]+')"
_debug2 _zone_id "$_zone_id" _debug2 _zone_id "$_zone_id"
if [ -z "$_zone_id" ]; then if [ -z "$_zone_id" ]; then
_err "Error getting _zone_id for $1" _err "Error getting _zone_id for $2"
return 1 return 1
fi fi
return 0 return 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment