From 4b33ed522d01f06ae7b18d338fcb08a636056385 Mon Sep 17 00:00:00 2001 From: 0x1d Date: Fri, 7 Nov 2025 09:52:45 +0100 Subject: [PATCH] fix(scripts): install make in pre-commit container --- scripts/pre-commit-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pre-commit-check.sh b/scripts/pre-commit-check.sh index a808beb..316dcc2 100755 --- a/scripts/pre-commit-check.sh +++ b/scripts/pre-commit-check.sh @@ -31,7 +31,7 @@ docker run --rm \ "$IMAGE_NAME:latest" \ sh -c " echo '📦 Installing Go 1.25.3 and required tools...' - apk add --no-cache protobuf protobuf-dev bash git wget tar || exit 1 + apk add --no-cache protobuf protobuf-dev bash git wget tar make || exit 1 # Install Go 1.25.3 cd /tmp && \