update .gitignore to account for .zig-cache rename
1 files changed, 5 insertions(+), 1 deletions(-)
.gitignore+5-1
| ... | @@ -9,10 +9,14 @@ | ... | @@ -9,10 +9,14 @@ |
| 9 | # Cheers! | 9 | # Cheers! |
| 10 | # -andrewrk | 10 | # -andrewrk |
| 11 | | 11 | |
| 12 | zig-cache/ | 12 | .zig-cache/ |
| 13 | zig-out/ | 13 | zig-out/ |
| 14 | /release/ | 14 | /release/ |
| 15 | /debug/ | 15 | /debug/ |
| 16 | /build/ | 16 | /build/ |
| 17 | /build-*/ | 17 | /build-*/ |
| 18 | /docgen_tmp/ | 18 | /docgen_tmp/ |
| | 19 | |
| | 20 | # Although this was renamed to .zig-cache, let's leave it here for a few |
| | 21 | # releases to make it less annoying to work with multiple branches. |
| | 22 | zig-cache/ |