bunch
bunch copied to clipboard
npm-like tool for managing Go dependencies
Getting the following error running `bunch install` `failed installing packages: exit status 1 [exit status 1 github.com/dkulchenko/bunch/packages.go:439: github.com/dkulchenko/bunch/packages.go:578: ]` Bunchfile contents: ``` bitbucket.org/repo/project !self gopkg.in/urfave/cli.v1 github.com/go-sql-driver/mysql github.com/Sirupsen/logrus github.com/jmoiron/sqlx github.com/AHaymond/go-jira/v2/jira gopkg.in/yaml.v2...
`bunch generate` checks only `go list --json .` but some projects may contain multiple "main" packages in subdirectories. It should probably be changed to `go list --json ./...`
I've been using Bunch and it works great also with private repositories. Wondering if anyone has been able to get this to also work with Google App Engine?
(sorry for the barrage of questions, I'm not sure what other channel to use...) Is there a way to vendor dependencies that cannot be fetched on-demand (for example, because they...
In 1.5 the go command will read the environment variable GO15VENDOREXPERIMENT. If enabled, it will use the local "/vendor/" folder for dependencies. Will you consider supporting this approach?
The self link (e.g. .vendor/src/github/com/org/proj -> ../../../../../) breaks code coverage profiles. At least when using ginkgo (but I don't really think plain `go test` is different). The `.coverageprofile` file produced...
We pull in a few command-line tools for commit hooks, so they are not imported by anything, just listed in our Bunchfile. eg: ``` github.com/kisielk/errcheck github.com/barakmich/go-nyet github.com/golang/lint/golint golang.org/x/tools/cmd/goimports github.com/dkulchenko/bunch ```...
(Would be nice to document the bunchfile syntax fully)