Skip to content

Commit

Permalink
Merge pull request #271 from dell/golint
Browse files Browse the repository at this point in the history
Change go get to go install for golint
  • Loading branch information
suryagupta4 authored Dec 1, 2023
2 parents 680b26b + 7fe40ef commit b054ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ echo === Finished

echo === Linting...
(command -v golint >/dev/null 2>&1 \
|| GO111MODULE=off go get -insecure -u golang.org/x/lint/golint) \
|| go install golang.org/x/lint/golint@latest) \
&& golint --set_exit_status ${DIRS}
LINT_RETURN_CODE=$?
echo === Finished
Expand Down

0 comments on commit b054ac3

Please sign in to comment.