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.
This commit is contained in:
Eric Paris 2015-02-05 09:34:24 -05:00
parent edea91e519
commit a70fd60640

View File

@ -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..."