fixes godep save failure

godep save ./... fails not finding package gopkg.in/v2/yaml as
the same package is availble as gopkg.in/yaml.v2 through Godeps.json
This commit is contained in:
Ashwin Raveendran 2015-02-11 12:23:33 -08:00
parent 0ddbb52717
commit 89d2bb4625

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