From b43cb0c68fc5c4b93bf3384c7f01fbaab4769ba6 Mon Sep 17 00:00:00 2001 From: Kang Ming Date: Mon, 6 Sep 2021 22:31:48 +0800 Subject: [PATCH] fix: update makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 348b6864e..5f8ea0cce 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ FLAGS?=-ldflags "-X github.com/supabase/gotrue/cmd.Version=`git rev-parse HEAD`" help: ## Show this help. @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) -all: lint vet test build ## Run the tests and build the binary. +all: lint vet build ## Run the tests and build the binary. build: ## Build the binary. go build $(FLAGS)