Skip to content

Commit 9794473

Browse files
committed
chore: allow brew update in setup.sh to fail
1 parent 91cfd11 commit 9794473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Linux
1111
sudo apt-get update --yes
1212
sudo apt-get install cmake doxygen graphviz llvm g++ pkg-config m4 wget --yes
1313
elif [[ "$OSTYPE" == "darwin"* ]]; then # macOS
14-
brew update
14+
brew update || true # allow failure
1515
brew install cmake doxygen graphviz pkg-config wget coreutils # `coreutils` installs the `realpath` command
1616
elif [[ "$OSTYPE" == "msys"* ]]; then # Windows
1717
echo "Dependencies are not going to be installed automatically on Windows."

0 commit comments

Comments
 (0)