Skip to content

mibk/g..

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

g..

g.. is a wrapper around the go command for running go sub-commands (e.g. test, vet, fmt, ...) on paths ending with ... with excluded vendor packages.

It is meant as a cross-platform workaround for the golang/go#19090 issue.

DEPRECATED: Just use Go 1.9.

Installation

go get -u github.com/mibk/g..

Example of usage

# list all packages of the current application
g.. # it's basically equivalent to `go list |grep -v vendor`

# test them
g.. test

# gofmt them
g.. fmt

# list all Docker packages (compare it with go list github.com/docker/docker/...)
g.. github.com/docker/docker/...

# test all packages in Docker
g.. github.com/docker/docker/... test

For additional information run g.. -h.

About

*DEPRECATED* a go command wrapper that excludes vendor packages for test, vet, fmt, ...

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages