From a70fd606408eb9373bc54c435909c71f894d2931 Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Thu, 5 Feb 2015 09:34:24 -0500 Subject: [PATCH] use gopkg.in/yaml.v2 in podex Most of the repo uses gopkg.in/yaml.v2 but podex was using gopkg.in/v2/yaml. This means it wasn't buildable with what was in Godeps. Use the same version as the rest of the repo to solve the Godeps problem. --- contrib/podex/podex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/podex/podex.go b/contrib/podex/podex.go index 9c9110af215..e5ccd4c2c74 100644 --- a/contrib/podex/podex.go +++ b/contrib/podex/podex.go @@ -40,7 +40,7 @@ import ( "strings" "github.com/ghodss/yaml" - goyaml "gopkg.in/v2/yaml" + goyaml "gopkg.in/yaml.v2" ) const usage = "podex [-format=yaml|json] [-type=pod|container] [-id NAME] IMAGES..."