banyanops / collector

A framework for Static Analysis of Docker container images
Other
289 stars 23 forks source link

Building is broken #18

Closed jfktrey closed 9 years ago

jfktrey commented 9 years ago

The latest commit that moved things into a fsutil package (f2f5aeb) broke builds for me, while the previous commit (33d25bc) works fine. Output from go get -u github.com/banyanops/collector/..., the command recommended in the "Getting started" section, is

package github.com/banyanops/collector
    imports github.com/banyanops/collector/config
    imports github.com/docker/docker/pkg/homedir
    imports github.com/docker/libcontainer/user
    imports github.com/docker/docker/pkg/mflag
    imports github.com/banyanops/collector/fsutil
    imports github.com/banyanops/collector/fsutil
    imports github.com/banyanops/collector/fsutil: cannot find package "github.com/banyanops/collector/fsutil" in any of:
    /usr/lib/go/src/pkg/github.com/banyanops/collector/fsutil (from $GOROOT)
    /home/jfktrey/Docker/collector/src/github.com/banyanops/collector/fsutil (from $GOPATH)
yoshiotu commented 9 years ago

Thanks for reporting. I had neglected to include the fsutil package in the commit. Should work now.

jfktrey commented 9 years ago

Great! Confirmed working now.