fix: reverse logic in brew-bump env fns (#4732)

This commit is contained in:
Joe Previte 2022-01-12 15:51:11 -07:00 committed by GitHub
parent 15500bb388
commit 48ddad8351
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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