ondrajz / go-callvis

Visualize call graph of a Go program using Graphviz
https://ofabry.github.io/go-callvis
MIT License
5.91k stars 408 forks source link

`make` broken out of the box #13

Closed bufdev closed 6 years ago

bufdev commented 7 years ago
$ make
go get -u github.com/golang/dep/cmd/dep
dep ensure -update
dep: WARNING: Unknown field in manifest: dependencies
Found 1 errors:

import path github.com/TrueFurby/go-callvis/examples/main had a local import: "./mypkg"
make: *** [dep] Error 1

The import path can be fixed by changing ./mypkg to github.com/TrueFurby/go-callvis/examples/main/mypkg, but after doing that, you'll still get:

$ make
go get -u github.com/golang/dep/cmd/dep
dep ensure -update
dep: WARNING: Unknown field in manifest: dependencies
Gopkg.toml and Gopkg.lock are out of sync. Run a plain dep ensure to resync them before attempting to -update
make: *** [dep] Error 1
ondrajz commented 7 years ago

I fixed the issue with compilation and pushed the changes. Please pull and try it now.