From 03b5820478238cde44f2d72f239233e0cc48d4fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 27 Nov 2024 09:45:58 +0100 Subject: [PATCH] ci: Ignore errors when removing pkg-config on macOS (#198) --- .github/workflows/install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install/action.yml b/.github/workflows/install/action.yml index 59673d9..03bcb1e 100644 --- a/.github/workflows/install/action.yml +++ b/.github/workflows/install/action.yml @@ -78,7 +78,7 @@ runs: - name: Remove pkg-config@0.29.2 if: runner.os == 'macOS' run: | - brew uninstall pkg-config@0.29.2 + brew uninstall pkg-config@0.29.2 || true shell: bash - uses: r-lib/actions/setup-pandoc@v2