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.
This commit is contained in:
Peter Guy
2025-10-14 06:46:24 -07:00
committed by GitHub
parent 75734a4d07
commit 41bb8d7af0

View File

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