From ec3edaad2283fb37f4e123f1339fc9590069e813 Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Tue, 28 Jul 2020 09:28:59 +0200 Subject: [PATCH] Fix spaces for tabs in Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f20f8b07..b495e744 100644 --- a/Makefile +++ b/Makefile @@ -97,7 +97,7 @@ all: install lint test build: go.sum ifeq ($(OS),Windows_NT) - # wasmd nodes not supported on windows, maybe the cli? + # wasmd nodes not supported on windows, maybe the cli? go build -mod=readonly $(BUILD_FLAGS) -o build/wasmcli.exe ./cmd/wasmcli else go build -mod=readonly $(BUILD_FLAGS) -o build/wasmd ./cmd/wasmd @@ -107,7 +107,7 @@ endif build-coral: go.sum ifeq ($(OS),Windows_NT) - # wasmd nodes not supported on windows, maybe the cli? + # wasmd nodes not supported on windows, maybe the cli? go build -mod=readonly $(CORAL_BUILD_FLAGS) -o build/coral.exe ./cmd/wasmcli else go build -mod=readonly $(CORAL_BUILD_FLAGS) -o build/corald ./cmd/wasmd @@ -116,7 +116,7 @@ endif build-gaiaflex: go.sum ifeq ($(OS),Windows_NT) - # wasmd nodes not supported on windows, maybe the cli? + # wasmd nodes not supported on windows, maybe the cli? go build -mod=readonly $(FLEX_BUILD_FLAGS) -o build/gaiaflex.exe ./cmd/wasmcli else go build -mod=readonly $(FLEX_BUILD_FLAGS) -o build/gaiaflexd ./cmd/wasmd