From dab9c01549ff65497961bbb4fed0acb6688f0067 Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 7 Mar 2017 10:44:44 -0500 Subject: [PATCH] Switch to another fork of the mflag library Docker removed their mflag library and moved to a library named cobra. This change gets the tool back working --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index cba1323..e39aec2 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ import ( "time" "github.com/docker/docker/opts" - flag "github.com/docker/docker/pkg/mflag" + flag "github.com/weaveworks/docker/pkg/mflag" dockerClient "github.com/fsouza/go-dockerclient" )