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.
1 parent 20eadec commit 7334e3dCopy full SHA for 7334e3d
.github/workflows/macos.yml
@@ -17,10 +17,14 @@ jobs:
17
run: |
18
brew update
19
brew install cmake pkg-config git wget curl
20
- - name: Handle existing vcpkg installation
+ - name: Prepare vcpkg
21
22
if brew list vcpkg; then
23
- brew unlink vcpkg && brew uninstall vcpkg
+ brew unlink vcpkg
24
+ brew uninstall --ignore-dependencies vcpkg
25
+ fi
26
+ if [ -f /usr/local/bin/vcpkg ]; then
27
+ rm /usr/local/bin/vcpkg
28
fi
29
brew install vcpkg
30
brew link --overwrite vcpkg
0 commit comments