Unverified Commit ed971df9 authored by Avi Miller's avatar Avi Miller
Browse files

fix: add missing else/return 1 to if block


Signed-off-by: default avatarAvi Miller <avi.miller@oracle.com>
parent 017a1018
......@@ -30,6 +30,8 @@ dns_oci_add() {
_err "Error: failed to add TXT record for ${_sub_domain}.${_domain}."
return 1
fi
else
return 1
fi
else
......@@ -53,6 +55,8 @@ dns_oci_rm() {
_err "Error: failed to remove TXT record for ${_sub_domain}.${_domain}."
return 1
fi
else
return 1
fi
else
......
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