We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 992a3e5 commit 5ce7a90Copy full SHA for 5ce7a90
.github/workflows/release.yml
@@ -100,7 +100,7 @@ jobs:
100
- name: Build (Windows)
101
if: runner.os == 'Windows'
102
run: |
103
- mkdir build
+ if (-Not (Test-Path build)) { New-Item -ItemType Directory -Path build }
104
cd build
105
$pybind11_dir = python -m pybind11 --cmakedir
106
cmake -DCMAKE_BUILD_TYPE=Release -DEigen3_DIR=$env:EIGEN3_INCLUDE_DIR -DCMAKE_PREFIX_PATH="$pybind11_dir" ..
0 commit comments