Something changed between go versions and that is causing package dependencies to be installed in vendor folder rather than usual _vendor folder.
This only happens when gom is run from custom location. For example:
export GOPATH=$(pwd -L)
export PATH=$GOPATH/bin:$PATH
go get github.com/mattn/gom
gom install #will install dependencies in vendor folder while using golang 1.6
I usually use above pattern for self-contained project specific Makefile. This problem does not happen when I run gom install from globally configured GOPATH.
Something changed between go versions and that is causing package dependencies to be installed in
vendor
folder rather than usual_vendor
folder.This only happens when
gom
is run from custom location. For example:I usually use above pattern for self-contained project specific
Makefile
. This problem does not happen when I rungom install
from globally configuredGOPATH
.