openmw/CI/before_install.macos.sh
AnyOldName3 fe97e3c888 Move brew repair and update to architecture-independent script
It installs things now, so these commands are useful.
2025-09-12 18:09:12 +01:00

13 lines
228 B
Bash
Executable File

#!/bin/sh -ex
brew tap --repair
brew update --quiet
if [[ "${MACOS_AMD64}" ]]; then
./CI/macos/before_install.amd64.sh
else
./CI/macos/before_install.arm64.sh
fi
command -v cmake >/dev/null 2>&1 || brew install cmake