mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
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:
parent
0ddbb52717
commit
89d2bb4625
@ -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..."
|
||||
|
Loading…
Reference in New Issue
Block a user