Support for local and external packages? #20
Description
Hi,
I'm trying gom for the first time, so it's possible I'm doing something wrong. I have the following structure for a project in a private repo (not go get
able, requires auth):
private/cmd
private/cmd/package1
private/cmd/package2
cmd
is a main package, and it uses cmd/package1
and cmd/package2
. They are part of the same repo, so I don't want to vendor the packages. But cmd
and the packages use external dependencies from github and google code.
I generated the Gomfile, and deleted the lines for the cmd/package1
and cmd/package2
. When I run gom build
, it complains that he cannot find those packages. Is this a supported scenario, to have some dependencies resolved in the standard GOPATH, and some resolved using the vendor
/gom-defined GOPATH?
Thanks,
Martin