mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 03:48:56 +00:00
Critical fix: glob patterns were silently ignored when extracting to disk because extractToDir doesn't support filtering. Solution: - Fast path: no glob/skip → use extractToDir (retries, symlinks, etc.) - Slow path: has glob/skip → manual extraction with filtering - Uses readDataIntoFd() for disk writes (same as extractToDir) Ensures consistent behavior across memory and disk extraction. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>