-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from akamai/release/v1.19.0
DXE-4357 Release/v1.19.0
- Loading branch information
Showing
127 changed files
with
11,438 additions
and
738 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,19 +14,16 @@ $(GOIMPORTS): | $(BIN) ; $(info $(M) Installing goimports $(GOIMPORTS_VERSION).. | |
$(BIN): | ||
@mkdir -p $@ | ||
$(BIN)/%: | $(BIN) ; $(info $(M) Installing $(PACKAGE)...) | ||
@tmp=$$(mktemp -d); \ | ||
env GO111MODULE=off GOPATH=$$tmp GOBIN=$(BIN) $(GOCMD) get $(PACKAGE) \ | ||
|| ret=$$?; \ | ||
rm -rf $$tmp ; exit $$ret | ||
env GOBIN=$(BIN) $(GOCMD) install $(PACKAGE) | ||
|
||
GOCOV = $(BIN)/gocov | ||
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/... | ||
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/[email protected] | ||
|
||
GOCOVXML = $(BIN)/gocov-xml | ||
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml | ||
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml@v1.1.0 | ||
|
||
GOJUNITREPORT = $(BIN)/go-junit-report | ||
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report | ||
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report/[email protected] | ||
|
||
TFLINT = $(BIN)/tflint | ||
$(BIN)/tflint: $(BIN) ; $(info $(M) Installing tflint...) | ||
|
Oops, something went wrong.