We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f30221 + fb9207c commit 626bfa3Copy full SHA for 626bfa3
.github/workflows/build.yml
@@ -87,6 +87,9 @@ jobs:
87
# Runs a single command using the runners shell
88
- name: Install Deps
89
run: |
90
+ # Unlink and re-link to prevent errors when GitHub Mac runner images
91
+ # install Python outside of Brew:
92
+ brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
93
brew update
94
brew install doxygen
95
brew install opendbx
0 commit comments