From 1b34d23cb16480ffc120e5b895387baf371cfd95 Mon Sep 17 00:00:00 2001 From: Ari Palo Date: Mon, 11 Oct 2021 00:48:21 +0300 Subject: [PATCH] style: organize --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b6863f1d..b53c5bb4 100644 --- a/Makefile +++ b/Makefile @@ -16,11 +16,11 @@ clean: ## Remove previous build @(go clean) @(rm -rf $(BIN_FOLDER)) -help: ## Display available commands - @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' - bump: ## Do a version bump @(npx standard-version --skip.changelog) bump-check: ## Check which would be the next version - @(npx standard-version --skip.changelog --dry-run) \ No newline at end of file + @(npx standard-version --skip.changelog --dry-run) + +help: ## Display available commands + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'