From 9aa08010afff4a44643d5eb8c0aab225b5d122be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Wed, 27 Nov 2024 10:08:44 +0100 Subject: [PATCH] ci: Ignore errors when removing pkg-config on macOS (#2257) --- .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 59673d9ca..03bcb1eb8 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