release: Add missing return to _check_required_env_var()

Otherwise none of the calls to this function will actually continue
after it's called.

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio
2024-02-27 12:15:43 +01:00
parent 0aa82e7050
commit d10b818de5

View File

@@ -45,6 +45,8 @@ function _check_required_env_var()
[ -z "${env_var}" ] && \
_die "\"${1}\" environment variable is required but was not set"
return 0
}
function _next_release_version()