diff options
author | Aaron Buchwald <[email protected]> | 2020-12-17 14:14:45 -0500 |
---|---|---|
committer | Aaron Buchwald <[email protected]> | 2020-12-17 14:14:45 -0500 |
commit | 5f6acbf70cb34f8e7978ae5ef4b2c323b2605ff4 (patch) | |
tree | 31372e382fcc1b9b7ce5e2647c360129338cf96c /.ci | |
parent | b89114d6abd140dcd1fbf6e4e64fcba508a9f59c (diff) |
Reduce overhead in ci lint script
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/lint.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.ci/lint.sh b/.ci/lint.sh index e2ee0ce..e5363a8 100755 --- a/.ci/lint.sh +++ b/.ci/lint.sh @@ -1,9 +1,5 @@ # binary will be $(go env GOPATH)/bin/golangci-lint curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.30.0 -# or install it into ./bin/ -curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.30.0 -# In alpine linux (as it does not come with curl by default) -wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.30.0 export PATH=$PATH:$(go env GOPATH)/bin |