fix make clean: change dir name from zig-cache to .zig-cache (#9192)

`make clean` was not removing the `.zig-cache` directory. Instead it was
removing the `zig-cache` directory.
pull/9200/head
Peter Guy 2025-10-14 06:46:24 -07:00 committed by GitHub
parent 75734a4d07
commit 41bb8d7af0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ vendor/glad/include/glad/glad.h: vendor/glad/include/glad/gl.h
clean: clean:
rm -rf \ rm -rf \
zig-out zig-cache \ zig-out .zig-cache \
macos/build \ macos/build \
macos/GhosttyKit.xcframework macos/GhosttyKit.xcframework
.PHONY: clean .PHONY: clean