-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove tooling dependencies from go.mod (#42)
- Loading branch information
Showing
4 changed files
with
7 additions
and
969 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,12 @@ DOCKER_IMAGE ?= connectivity_controller | |
|
||
export GOPRIVATE=github.com/reemote/* | ||
export PATH := ${BIN_DIR}:$(PATH) | ||
export GOBIN := ${BIN_DIR} | ||
|
||
tools: ## Installing tools from tools.go | ||
- echo Installing tools from tools.go | ||
- cat tools.go | grep _ | awk -F'"' '{print $$2}' | xargs -tI % env GOBIN=${BIN_DIR} go install % | ||
echo Installing tools | ||
go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
go install github.com/matryer/[email protected] | ||
|
||
.PHONY: clean | ||
clean: ## run all cleanup tasks | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.