Skip to content

Commit

Permalink
Update stats-actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pottekkat authored Nov 23, 2024
1 parent 2c8712e commit 4903e6e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/stats-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,17 @@ jobs:
runs-on: macos-latest
steps:

- name: Install pkgconf if not already installed
run: |
if ! brew list pkgconf &>/dev/null; then
brew install pkgconf
fi
- name: Unlink conflicting pkg-config
run: brew unlink [email protected]
run: |
if brew list [email protected] &>/dev/null; then
brew unlink [email protected]
fi
- name: Force-link pkgconf
run: brew link --overwrite pkgconf
Expand Down

0 comments on commit 4903e6e

Please sign in to comment.