gobin icon indicating copy to clipboard operation
gobin copied to clipboard

gobin is an experimental, module-aware command to install/run main packages.

Results 32 gobin issues
Sort by recently updated
recently updated
newest added

In golang:1.15 ``` $ GO111MODULE=on go get github.com/myitcv/[email protected] $ gobin istio.io/test-infra/boskos/cmd/mason_client@master Installed istio.io/test-infra/boskos/cmd/[email protected] to /go/bin/mason_client ``` In golang:1.16beta1 ``` root@0235e3c92fb6:/go# GO111MODULE=on go get github.com/myitcv/[email protected] go: downloading github.com/myitcv/gobin v0.0.14 go: downloading...

Hi, I'm getting the following error: ``` $ gobin k8s.io/test-infra/robots/pr-creator failed to run go list -find -json k8s.io/test-infra/robots/pr-creator: exit status 1 go: finding module for package k8s.io/test-infra/robots/pr-creator cannot find module...

``` $ XDG_CACHE_HOME=.cache gobin -run github.com/cheekybits/genny failed to run go install github.com/cheekybits/genny: exit status 1 cannot install, GOBIN must be an absolute path ``` Error message should be: `XDG_CACHE_HOME must...

There are a couple usability issues related to absence of gobin-installed binaries in PATH. First one is obvious: `gobin -m -run github.com/golangci/golangci-lint/cmd/golangci-lint` is a way harder to type than just...

The gobin cache for a given binary isn't invalidated when the version of Go has changed. In practice, this leads to issues when the compilation behavior differs. As a concrete...

bug

Hi :wave: I would love to start here a discussion on the possibility for [bingo](https://github.com/bwplotka/bingo) project & community to collaborate closer with @myitcv and `gobin` community. While creating bingo I...

gobin dies with a http package. An -insecure flag like go get has should resolve this problem.

As of gobin 0.0.13 (thanks to a bugfix as far as I can tell) a global `GOFLAGS=-mod=readonly` setting causes gobin to fail: ``` failed to run go list -find -json...

I've been working over my own local development processes (which is itself written in go) and have taken to using gobin (because it's awesome) as part of that solution. Currently...