Glide is a package manager for Go. Glide v0.12.3 is the latest release. For more details on Glide visit https://glide.sh. Pull requests are welcome.
glide install --force --skip-vendor
--debug
github.com/glide
|-- github.com/khatribharat/goapp-brock (/home/khatri/Code/go/src/github.com/glide/vendor/github.com/khatribharat/goapp-brock)
github.com/casbin/casbin (glide get github.com/casbin/casbin)
casbin
not installed automatically?
I'm trying to use mirrors to point to a local repo and I'm not having any luck getting it to work.
My repo (as defined in my glide.yaml) is
- package: github.com/someCompany/someThingCool
version: 2.87.4
My local repro is located at $GOPATH/src/github.com/someCompany/someThingCool
So to use mirror I've be running glide mirror set github.com/someCompany/someThingCool file:///src/github.com/someCompany/someThingCool
After setting the mirror, I rm -r vendor
from my repo with the glide.yaml
and run glide install
. However, after that the copy of my mirrored repro under vendor
is not my local copy. Any ideas what I could be doing wrong?
Hi guys, could you please advice whether I am doing something wrong when trying to resolve github.com/ethereum/go-ethereum
subpackages like ethclient with glide ?
The issue that I encounter is
[ERROR] Error scanning github.com/ethereum/go-ethereum/ethclient: cannot find package "."
My imports are defined like this:
"github.com/sirupsen/logrus"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/gin-gonic/gin"
Although my glide.yaml has this subpackage defined
- package: github.com/ethereum/go-ethereum
version: ^2.0.0
subpackages:
- ethclient
but still fails to resolve