You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 12, 2018. It is now read-only.
GO15VENDOREXPERIMENT was switched on by default in 1.6, but easily disabled by doing:
export GO15VENDOREXPERIMENT="0"
Go 1.7 removes that capability and consequently fugu does not compile using Go 1.7. The error, for me at least, is:
==> godep go build -o /usr/local/Cellar/fugu/1.1.1/bin/fugu main.go usage.go version.go
package main
imports github.com/mattes/fugu
imports github.com/docker/docker/registry
imports github.com/docker/docker/engine
imports github.com/docker/docker/utils
imports github.com/docker/docker/pkg/archive
imports github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar: must be imported as src/code.google.com/p/go/src/pkg/archive/tar
godep: go exit status 1
GO15VENDOREXPERIMENTwas switched on by default in 1.6, but easily disabled by doing:Go 1.7 removes that capability and consequently
fugudoes not compile using Go 1.7. The error, for me at least, is: