Commit 659ed92
Fix Hwloc handling for Windows CI
The previous fix didn't properly handle the Windows case where
ifelse(Sys.iswindows(), 0, ...) would return 0, causing the min()
to always select 0, leading to an empty string parse error.
Now we ensure at least 1 core even on Windows by wrapping the entire
ifelse expression with max(..., 1).
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>1 parent bff0f24 commit 659ed92
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
0 commit comments