-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix local function issue for variables.env (#47)
* Fix local issue for variables.env Signed-off-by: Kemal Akkoyun <[email protected]> * Address review issues Signed-off-by: Kemal Akkoyun <[email protected]>
- Loading branch information
Showing
2 changed files
with
13 additions
and
13 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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.2.2. DO NOT EDIT. | ||
# All tools are designed to be build inside $GOBIN. | ||
# Those variables will work only until 'bingo get' was invoked, or if tools were installed via Makefile's Variables.mk. | ||
local gobin=$(go env GOBIN) | ||
GOBIN=${GOBIN:=$(go env GOBIN)} | ||
|
||
if [ -z "$gobin" ]; then | ||
gobin="$(go env GOPATH)/bin" | ||
if [ -z "$GOBIN" ]; then | ||
GOBIN="$(go env GOPATH)/bin" | ||
fi | ||
|
||
|
||
COPYRIGHT="${gobin}/copyright-v0.9.0" | ||
COPYRIGHT="${GOBIN}/copyright-v0.9.0" | ||
|
||
EMBEDMD="${gobin}/embedmd-v1.0.0" | ||
EMBEDMD="${GOBIN}/embedmd-v1.0.0" | ||
|
||
FAILLINT="${gobin}/faillint-v1.5.0" | ||
FAILLINT="${GOBIN}/faillint-v1.5.0" | ||
|
||
GOIMPORTS="${gobin}/goimports-v0.0.0-20200519204825-e64124511800" | ||
GOIMPORTS="${GOBIN}/goimports-v0.0.0-20200519204825-e64124511800" | ||
|
||
GOLANGCI_LINT="${gobin}/golangci-lint-v1.26.0" | ||
GOLANGCI_LINT="${GOBIN}/golangci-lint-v1.26.0" | ||
|
||
MISSPELL="${gobin}/misspell-v0.3.4" | ||
MISSPELL="${GOBIN}/misspell-v0.3.4" | ||
|
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