From fb96a2a4f1fd45fc0073dd45f5dae34ddeceac59 Mon Sep 17 00:00:00 2001 From: yusing Date: Sat, 31 Jan 2026 23:49:47 +0800 Subject: [PATCH] fix(Makefile): exclude specific directories from gomod_paths search --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3ae8c2eb..65c56388 100755 --- a/Makefile +++ b/Makefile @@ -92,7 +92,7 @@ docker-build-test: go_ver := $(shell go version | cut -d' ' -f3 | cut -d'o' -f2) files := $(shell find . -name go.mod -type f -or -name Dockerfile -type f) -gomod_paths := $(shell find . -name go.mod -type f | xargs dirname) +gomod_paths := $(shell find . -name go.mod -type f | grep -vE '^./internal/(go-oidc|go-proxmox|gopsutil)/' | xargs dirname) update-go: for file in ${files}; do \