More macOS CI fixes (#2352)

* Revert "Fix macOS CI (#2345)"

This reverts commit 72a996a885.

* ignore update output
pull/2070/head
Willem Melching 5 years ago committed by GitHub
parent 0fe70c6ef4
commit e23bb6113b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      tools/mac_setup.sh

@ -1,7 +1,13 @@
#!/bin/bash -e #!/bin/bash -e
echo "Updating Homebrew" # Install brew if required.
brew update if [[ $(command -v brew) == "" ]]; then
echo "Installing Hombrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
else
echo "Updating Homebrew"
brew update || true
fi
brew install capnp \ brew install capnp \
czmq \ czmq \

Loading…
Cancel
Save