diff --git a/ci/steps/brew-bump.sh b/ci/steps/brew-bump.sh index 6e6889c5..1e621135 100755 --- a/ci/steps/brew-bump.sh +++ b/ci/steps/brew-bump.sh @@ -10,13 +10,13 @@ main() { echo "Checking environment variables" # We need VERSION to bump the brew formula - if is_env_var_set "VERSION"; then + if ! is_env_var_set "VERSION"; then echo "VERSION is not set" exit 1 fi # We need HOMEBREW_GITHUB_API_TOKEN to push up commits - if is_env_var_set "HOMEBREW_GITHUB_API_TOKEN"; then + if ! is_env_var_set "HOMEBREW_GITHUB_API_TOKEN"; then echo "HOMEBREW_GITHUB_API_TOKEN is not set" exit 1 fi