Replace go install with go build -o in $TOOLING rule

This commit is contained in:
Ali Akca
2020-11-12 23:42:54 +01:00
parent aff0ef6582
commit ead1c35fac

View File

@@ -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) %