gorebuild icon indicating copy to clipboard operation
gorebuild copied to clipboard

Extract the import path of Go binaries and rebuild them. No more stale GOROOT.

Results 5 gorebuild issues
Sort by recently updated
recently updated
newest added

I am running this tool to rebuild, but it fails really early when trying to process 'Go-Package-Store': ```sh 08:46 $ gorebuild github.com/dustin/go-humanize github.com/google/go-github/github github.com/shurcooL/Go-Package-Store/presenter/github github.com/shurcooL/Go-Package-Store/cmd/Go-Package-Store 2017/03/06 08:46:06 rename /tmp/gorebuild465739942/Go-Package-Store /home/klauer/dev/go/bin/Go-Package-Store:...

I don't see a mention in the README that `gorebuild` is not supposed to be supported on Windows, yet it has an issue that would prevent it from working there....

When `/tmp` and `GOPATH` live on different filesystems, gorebuild fails with `EXDEV` ("invalid cross-device link"). This is caused by the use of `os.Rename` to move the newly built binary back...

I have renamed my $GOPATH. For most binaries that are from the previous path, gorebuild -n shows absolute directory paths rather than import paths. If there isn't an actual import...

I don't see a mention in the README that `gorebuild` imposes any limitations on one's Go setup, but I see there's an issue that would prevent it from working when...