From 38d3b6100bca52b791d658402bd5fed0a8d62fd0 Mon Sep 17 00:00:00 2001 From: Ionut Balutoiu Date: Wed, 7 Jun 2023 10:01:03 +0300 Subject: [PATCH] Fix Makefile typo Signed-off-by: Ionut Balutoiu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a4e9a75f..72fd651b 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ fmt: @$(GO) fmt $$(go list ./...) fmtcheck: - @gofmt -l -s $$(go list ./... | sed 's|github.com/cloudbase/garm/||g') | grep ".*\.go"; if [ "$$?" -eq 0 ]; then echo "gofmt check failed; please tun gofmt -w -s"; exit 1;fi + @gofmt -l -s $$(go list ./... | sed 's|github.com/cloudbase/garm/||g') | grep ".*\.go"; if [ "$$?" -eq 0 ]; then echo "gofmt check failed; please run gofmt -w -s"; exit 1;fi verify-vendor: ## verify if all the go.mod/go.sum files are up-to-date $(eval TMPDIR := $(shell mktemp -d))