Files
bun.sh/test/cli
Claude Bot 27dc415271 Fix panic when using --config with extensionless files like NUL on Windows
Fixed a panic that occurred when using `--config=NUL` (or any extensionless file) on Windows.
The issue was in bunfig.zig:1166 where we tried to slice `ext[1..]` to get the extension
without the leading dot. When the file has no extension (ext is empty), this would panic
with "start index 1 is larger than end index 0".

The fix uses the existing `extWithoutLeadingDot()` helper method which safely handles
empty extensions.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-07 07:57:20 +00:00
..
2025-05-24 13:36:51 -07:00
2025-10-11 08:23:25 -07:00
2025-11-01 20:17:56 -07:00