Pseudo project setup:
Can't find a way to edit common-libs locally (i.e. in /src) and have those changes immediately reflected in my-project. The project /vendor file always has priority over that in $GOPATH.
Instead every time I need to push the common-libs changes to Github then run dep ensure -update
in my-project -- which is really slow and annoying.
Tried (unsuccessfully):
ignored = ["github.com/foo/common-libs*"]
, but throws a compilation error: cannot use &amount (type *"github.com/foo/my-project/vendor/github.com/shopspring/decimal".Decimal) as type *"github.com/foo/common-libs/vendor/github.com/shopspring/decimal".Decimal in field value
)dep ensure
adds the deleted folder back to the vendor folder).Any help appreciated! Thanks.