From 027491716eac1483755d2c66d97a00286372d499 Mon Sep 17 00:00:00 2001 From: ferhat elmas Date: Wed, 20 Nov 2019 22:54:26 +0100 Subject: [PATCH] Fix indentation in makefile (#361) --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0416c3f27..6454c6066 100644 --- a/Makefile +++ b/Makefile @@ -7,14 +7,14 @@ MISSPELL_BINARY=$(TOOLS_DIR)/misspell .PHONY: precommit precommit: install-misspell misspell - .PHONY: install-misspell +.PHONY: install-misspell install-misspell: go.mod go.sum internal/tools.go go build -o $(MISSPELL_BINARY) github.com/client9/misspell/cmd/misspell - .PHONY: misspell +.PHONY: misspell misspell: $(MISSPELL_BINARY) -error $(ALL_DOCS) - .PHONY: misspell-correction +.PHONY: misspell-correction misspell-correction: - $(MISSPELL_BINARY) -w $(ALL_DOCS) \ No newline at end of file + $(MISSPELL_BINARY) -w $(ALL_DOCS)