Closed romanpeters closed 2 years ago
go get is deprecated. Using it would throw errors, however those are silenced by piping to /dev/null.
go get
This PR replaces go get with go install to prevent any further issues.
go install
Thanks! Hacktoberfest credit well-deserved 💯
go get
is deprecated. Using it would throw errors, however those are silenced by piping to /dev/null.This PR replaces
go get
withgo install
to prevent any further issues.