Fixed check for the runner on Mac OS.

This commit is contained in:
Alexander Artemenko 2021-02-06 13:59:58 +03:00
parent 4c5cb3503a
commit 8a6720a006

View file

@ -28,7 +28,7 @@ runs:
if [[ "$RUNNER_OS" == "Linux" ]]; then
sudo apt-get -y install git build-essential automake libcurl4-openssl-dev
fi
if [[ "$OS" == "macos-latest" ]]; then
if [[ "$RUNNER_OS" == "macOS" ]]; then
brew install automake autoconf curl
fi