From e0b0b92a8aa4e9c2673871ff16297d1f9068f342 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sat, 10 Jan 2026 16:27:55 -0500 Subject: [PATCH] refactor: remove redundant chmod +x command Go build already sets the executable bit on binaries, making the explicit chmod +x unnecessary. Co-Authored-By: Claude Sonnet 4.5 --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 9b3a37d..6b47c10 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ BINARY_NAME=lambda it: @ go build -o ${BINARY_NAME} ./cmd/lambda - @ chmod +x ${BINARY_NAME} TEST=simple