From e9c24e567148a6fe2835f192e5d9a73994e681a2 Mon Sep 17 00:00:00 2001 From: xfy Date: Mon, 20 Apr 2026 18:25:46 +0800 Subject: [PATCH] =?UTF-8?q?chore(make):=20=E5=A2=9E=E5=BC=BA=20clean=20?= =?UTF-8?q?=E7=9B=AE=E6=A0=87=E6=B8=85=E7=90=86=20Go=20=E7=BC=93=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加 go clean -cache -testcache 清理构建缓存, 注释保留 go clean -modcache 供需要时启用。 Co-Authored-By: Claude Opus 4.7 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 469d907..e623dc1 100644 --- a/Makefile +++ b/Makefile @@ -269,6 +269,8 @@ clean: @echo "Cleaning build artifacts..." rm -rf $(BUILD_DIR) rm -f coverage.out coverage.html + go clean -cache -testcache + # go clean -modcache @echo "Clean complete." # ============================================