-
Notifications
You must be signed in to change notification settings - Fork 225
Description
I am trying to build iron functions code.
But there are some issues.
gwontaegmin-ui-MacBook-Pro:functions taekmin$ make build
go build -o functions
api/runner/task.go:15:2: cannot find package "github.com/moby/moby/cli/config/configfile" in any of:
/usr/local/go/src/github.com/moby/moby/cli/config/configfile (from $GOROOT)
/Users/taekmin/go/src/github.com/moby/moby/cli/config/configfile (from $GOPATH)
../../Sirupsen/logrus/hooks/syslog/syslog.go:10:2: case-insensitive import collision: "github.com/sirupsen/logrus" and "github.com/Sirupsen/logrus"
api/server/server.go:25:2: code in directory /Users/taekmin/go/src/github.com/ucirello/supervisor expects import "cirello.io/supervisor"
make: *** [build] Error 1
So, I tried to install that package. but that package can't be installed.
gwontaegmin-ui-MacBook-Pro:functions taekmin$ go get -v github.com/moby/moby/cli/config/configfile
github.com/moby/moby (download)
package github.com/moby/moby/cli/config/configfile: cannot find package "github.com/moby/moby/cli/config/configfile" in any of:
/usr/local/go/src/github.com/moby/moby/cli/config/configfile (from $GOROOT)
/Users/taekmin/go/src/github.com/moby/moby/cli/config/configfile (from $GOPATH)
gwontaegmin-ui-MacBook-Pro:functions taekmin$
let me know the solution.