Kuadrant / kuadrantctl

Kuadrant configuration command line utility
Apache License 2.0
6 stars 13 forks source link

Utilize go install for kind downloading #13

Closed dmvolod closed 3 years ago

dmvolod commented 3 years ago

This utilizing go install command for go binaries downloading instead of temp go mod init directory

dmvolod commented 3 years ago

Probably it could be easy to utilize go install $pkg@$version as go version set to 1.16

eguzki commented 3 years ago

First of all, thank you for the contribution.

I would not use an archived dependency to install dev tools.

Probably it could be easy to utilize go install $pkg@$version as go version set to 1.16

I would go for that. go install $pkg@$version is the way to go.

dmvolod commented 3 years ago

Thanks, @eguzki for review. PR changed to utilizing go install command.

eguzki commented 3 years ago

thanks @dmvolod :medal_military: