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 92bc163 commit bd91b15Copy full SHA for bd91b15
.github/workflows/build.yml
@@ -244,7 +244,11 @@ jobs:
244
# https://github.com/scikit-build/scikit-build-core/blob/3943920fa267dc83f9295279bea1c774c0916f13/src/scikit_build_core/program_search.py#L70
245
for TOOL in cmake cmake3 ninja-build ninja samu; do
246
while which ${TOOL}; do
247
- sudo rm -f $(which -a ${TOOL})
+ if [ "$RUNNER_OS" == "Windows" ]; then
248
+ rm -f "$(which ${TOOL})"
249
+ else
250
+ sudo rm -f $(which -a ${TOOL})
251
+ fi
252
done
253
254
0 commit comments