From 255273ddf661f5a9ddc396e19ff05b2224677dc0 Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 15 Apr 2026 20:33:48 +0100 Subject: [PATCH] Fix gofmt in Makefile It was pointing to the parent folder instead of local dir. Signed-off-by: Lucas Alvares Gomes --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bef4182..73d3e33 100644 --- a/Makefile +++ b/Makefile @@ -19,10 +19,10 @@ test: go test ./... fmt: - gofmt -w ./.. + gofmt -w . fmt-check: - @test -z "$$(gofmt -l ./..)" || { echo "The following files are not formatted:"; gofmt -l ./..; exit 1; } + @test -z "$$(gofmt -l .)" || { echo "The following files are not formatted:"; gofmt -l .; exit 1; } lint: golangci-lint run ./...