From be4acdcd9056c8d7cabbd5da79bd5c65ca3fa8d4 Mon Sep 17 00:00:00 2001 From: TheToddLuci0 Date: Sat, 10 Jan 2026 00:08:47 -0600 Subject: [PATCH] Update hack.sh to use user ids as user ids, not group ids as user ids --- hack/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/build.sh b/hack/build.sh index 5ed9ae4b..f9994138 100755 --- a/hack/build.sh +++ b/hack/build.sh @@ -14,7 +14,7 @@ mkdir -p .mod-cache docker run --rm \ -v "$PWD":/data/ \ -w /data \ - --user=$(id -g):$(id -g) \ + --user=$(id -u):$(id -g) \ -v ${PWD}/.cache:/.cache \ -v ${PWD}/.mod-cache:/go/pkg/mod \ golang:${GO_VERSION}-alpine \