mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

Homebrew apparently requires you to now specify the version of the package you're updating. We previously could just run `brew update openssl` and it would work. Now we must run `brew update openssl@1.1` for the command to succeed.
10 lines
192 B
Bash
Executable file
10 lines
192 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Preparing macOS environment"
|
|
sysctl hw.model hw.machine hw.ncpu hw.physicalcpu hw.logicalcpu
|
|
set -e
|
|
set -x
|
|
|
|
brew update
|
|
brew upgrade cmake openssl@1.1
|
|
brew install swig bison
|