You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: bypass sass.bat on Windows, call dart.exe directly (#14267, #6651)
Instead of invoking sass.bat through safeWindowsExec (which creates a
temp .bat file via cmd /c), call dart.exe + sass.snapshot directly.
This eliminates three classes of Windows .bat file issues:
- Deno quoting bug with spaced paths (#13997)
- cmd.exe OEM code page misreading UTF-8 accented paths (#14267)
- Enterprise group policy blocking .bat execution (#6651)
Follows the pattern established by verapdf.ts which bypasses its .bat
wrapper for the same reasons.
Copy file name to clipboardExpand all lines: news/changelog-1.10.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
All changes included in 1.10:
2
2
3
+
## Regression fixes
4
+
5
+
- ([#14267](https://github.com/quarto-dev/quarto-cli/issues/14267)): Fix Windows paths with accented characters (e.g., `C:\Users\Sébastien\`) breaking dart-sass compilation.
6
+
- ([#6651](https://github.com/quarto-dev/quarto-cli/issues/6651)): Fix dart-sass compilation failing in enterprise environments where `.bat` files are blocked by group policy.
0 commit comments