From 41bb8d7af056e13cc1d20ff038b3edf7f6a1b0dc Mon Sep 17 00:00:00 2001 From: Peter Guy Date: Tue, 14 Oct 2025 06:46:24 -0700 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad8379f7e..c5511a62e 100644 --- a/Makefile +++ b/Makefile @@ -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