We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15500bb commit 70e70dbCopy full SHA for 70e70db
ci/steps/brew-bump.sh
@@ -10,13 +10,13 @@ main() {
10
echo "Checking environment variables"
11
12
# We need VERSION to bump the brew formula
13
- if is_env_var_set "VERSION"; then
+ if ! is_env_var_set "VERSION"; then
14
echo "VERSION is not set"
15
exit 1
16
fi
17
18
# We need HOMEBREW_GITHUB_API_TOKEN to push up commits
19
- if is_env_var_set "HOMEBREW_GITHUB_API_TOKEN"; then
+ if ! is_env_var_set "HOMEBREW_GITHUB_API_TOKEN"; then
20
echo "HOMEBREW_GITHUB_API_TOKEN is not set"
21
22
0 commit comments