My project tree is $GOPATH/src/gillab.myfirm.ru/golang/rkn
I try to use glide for get dependency glide install
and I am stuck with a problem:
[ERROR] Error scanning gitlab.myfirm.ru/golang/rkn/events: cannot find package "." in:
/Users/droot/.glide/cache/src/https-gitlab.myfirm.ru-golang-rkn/events
I don't understand what exactly glide want from me. What such package is this "."
?
$GOPATH/src/gitlab.myfirm.ru/golang/rkn/event/events.go
have only 4 imports
package events
import (
"github.com/streadway/amqp"
log "github.com/Sirupsen/logrus"
"fmt"
"gitlab.myfirm.ru/golang/rkn/config"
)
........
same problem I got with another 4 packages.
$GOPATH/src/gitlab.myfirm.ru/golang/rkn/event
besidesevents.go
? What happens if you remove/Users/droot/.glide/cache/src/https-gitlab.myfirm.ru-golang-rkn/events
? – Owingsglide cc
(clear cache) same result – Pita