From ead1c35facf8ce77ad6a4111c3fa7835e381f6d0 Mon Sep 17 00:00:00 2001
From: Ali Akca <ali.a@smart-host.com>
Date: Thu, 12 Nov 2020 23:42:54 +0100
Subject: [PATCH] Replace `go install` with `go build -o` in $TOOLING rule

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 9411829e..96986e21 100644
--- a/Makefile
+++ b/Makefile
@@ -52,4 +52,4 @@ $(BIN_DIR):
 
 $(TOOLING): $(BIN_DIR)
 	@echo Installing tools from scripts/tools.go
-	@cat scripts/tools.go | grep _ | awk -F'"' '{print $$2}' | GOBIN=$(BIN_DIR) xargs -tI % go install %
+	@cat scripts/tools.go | grep _ | awk -F'"' '{print $$2}' | xargs -tI % go build -o $(BIN_DIR) %
-- 
GitLab