From 4a9c51a6c84de9d3ba85504e6e80a8fec06b44dc Mon Sep 17 00:00:00 2001 From: scribam Date: Mon, 31 May 2021 14:40:16 +0200 Subject: [PATCH] github actions: remove flac installation from macos --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 7334430f3..f32a7ec3c 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Set up build environment (macos-latest) run: | - brew install ccache flac libao libomp pulseaudio zlib + brew install ccache libao libomp pulseaudio zlib echo "/usr/local/opt/ccache/libexec" >> $GITHUB_PATH echo "CCACHE_DIR=/tmp/ccache" >> $GITHUB_ENV if: matrix.config.os == 'macos-latest'