Re: [go-nuts] How do you get an update for the tip of a package?

2021-03-19 Thread Shulhan
On Wed, 3 Mar 2021 07:06:36 -0800 (PST) Peter Kleiweg wrote: > I try to install a Go program from github at tip. > > This works: > > go get github.com/some/program@HEAD > > But when there is a new push to the repository, and I do this: > > go get -u github.com/some/program@HEAD > >

[go-nuts] How do you get an update for the tip of a package?

2021-03-03 Thread Peter Kleiweg
I try to install a Go program from github at tip. This works: go get github.com/some/program@HEAD But when there is a new push to the repository, and I do this: go get -u github.com/some/program@HEAD ... I still have the previous version. The same with go install. The same when I