Hacker News new | ask | show | jobs
by f2f 3701 days ago
minor factual adjustment: "go get" doesn't update a package once it's been downloaded. you need to force it.

"there is no guarantee that a build will be the same from day to day" is simply not true.

1 comments

Oh, indeed. I must've got mixed up: it doesn't guarantee that builds will the same from machine to machine (unless you run go get at the exact same instant).
So, in Golang there is no concept of package version?

For them different location (to import from) for an incompatible version is good-enough.

go get is just a mechanism, not the tool. there are other tools build on top of go get that ensure proper versioning.