How to update Go application in Amazon Linux

301 Views Asked by At

I am not familiar with Go. I want to update this application https://github.com/kahing/goofys to the recent version(right now its v0.0.10). I tried

$ go get github.com/kahing/goofys

$ go install github.com/kahing/goofys

But the version does not change. I need help.

1

There are 1 best solutions below

6
On BEST ANSWER

Just run, -u is used for update.

go get -u github.com/kahing/goofys

Then run (optional step, if you see a binary goofys in $GOPATH/bin; go install is not required. See comments why)

go install github.com/kahing/goofys