Skip to content

Commit f38ccc6

Browse files
committed
ci: changed homebrew env variables to use 1 as the value as documented
1 parent ba98fd0 commit f38ccc6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/brew-install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ set -o errexit # abort on nonzero exitstatus
44
set -o nounset # abort on unbound variable
55
set -o pipefail # don't hide errors within pipes
66

7-
export HOMEBREW_NO_INSTALL_UPGRADE='true'
8-
export HOMEBREW_NO_INSTALL_CLEANUP='true'
9-
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK='true'
10-
export HOMEBREW_NO_AUTO_UPDATE='true'
7+
export HOMEBREW_NO_INSTALL_UPGRADE=1
8+
export HOMEBREW_NO_INSTALL_CLEANUP=1
9+
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
10+
export HOMEBREW_NO_AUTO_UPDATE=1
1111

1212
brew install node@16
1313
brew link --overwrite node@16

0 commit comments

Comments
 (0)