We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce10d56 commit 034798eCopy full SHA for 034798e
1 file changed
.github/workflows/build-wheels.yml
@@ -56,12 +56,12 @@ jobs:
56
if not exist "C:\vcpkg" (
57
git clone https://github.com/Microsoft/vcpkg.git C:\vcpkg
58
)
59
- cd C:\vcpkg
60
- if not exist "vcpkg.exe" (
61
- .\bootstrap-vcpkg.bat
+ cd /d C:\vcpkg
+ if not exist "C:\vcpkg\vcpkg.exe" (
+ call bootstrap-vcpkg.bat
62
63
- .\vcpkg integrate install
64
- .\vcpkg install cgal:x64-windows eigen3:x64-windows gmp:x64-windows mpfr:x64-windows
+ vcpkg integrate install
+ vcpkg install cgal:x64-windows eigen3:x64-windows gmp:x64-windows mpfr:x64-windows
65
66
- name: Set dynamic version
67
run: |
0 commit comments