Skip to content

Commit e7fed27

Browse files
chore(gitignore): add **/.zig-cache-global/ pattern (#136)
## Summary - Extends `.gitignore` to cover `.zig-cache-global/` (only `**/.zig-cache/` was present) - Prevents recurrence of the cache-pollution that necessitated closing #135 ## Why PR #135 inadvertently staged ~98 files under `.zig-cache-global/`, the cache directory Zig uses when `ZIG_GLOBAL_CACHE_DIR` is set. The existing ignore pattern was for the default `.zig-cache/` only. This one-line addition closes the gap. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
2 parents 2ec29e3 + 68746e0 commit e7fed27

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ build/
2222
# Zig
2323
**/zig-out/
2424
**/.zig-cache/
25+
**/.zig-cache-global/
2526

2627
# Coq / Rocq
2728
*.vo

0 commit comments

Comments
 (0)