Fixed check for the runner on Mac OS.
This commit is contained in:
parent
4c5cb3503a
commit
8a6720a006
1 changed files with 1 additions and 1 deletions
2
.github/actions/setup-lisp/action.yml
vendored
2
.github/actions/setup-lisp/action.yml
vendored
|
@ -28,7 +28,7 @@ runs:
|
||||||
if [[ "$RUNNER_OS" == "Linux" ]]; then
|
if [[ "$RUNNER_OS" == "Linux" ]]; then
|
||||||
sudo apt-get -y install git build-essential automake libcurl4-openssl-dev
|
sudo apt-get -y install git build-essential automake libcurl4-openssl-dev
|
||||||
fi
|
fi
|
||||||
if [[ "$OS" == "macos-latest" ]]; then
|
if [[ "$RUNNER_OS" == "macOS" ]]; then
|
||||||
brew install automake autoconf curl
|
brew install automake autoconf curl
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue