From 034f4a0803af93937c193ae0d719b58f2b80c567 Mon Sep 17 00:00:00 2001 From: Stephen Webb Date: Tue, 16 Jul 2024 13:27:47 +1000 Subject: [PATCH] APR is already installed on macOS-13 --- .github/workflows/log4cxx-macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/log4cxx-macos.yml b/.github/workflows/log4cxx-macos.yml index 151135610..c130aa67a 100644 --- a/.github/workflows/log4cxx-macos.yml +++ b/.github/workflows/log4cxx-macos.yml @@ -45,7 +45,7 @@ jobs: - name: 'Configure Dependencies' run: | - brew install apr-util + if [ ${{ matrix.os }} != macos-13 ]; then brew install apr-util; fi if [ ${{ matrix.odbc }} == ON ]; then brew install unixodbc; fi if [ ${{ matrix.qt }} == ON ]; then brew install qt; fi