Commit 89d2bb46 authored by Ashwin Raveendran's avatar Ashwin Raveendran

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
parent 0ddbb527
...@@ -40,7 +40,7 @@ import ( ...@@ -40,7 +40,7 @@ import (
"strings" "strings"
"github.com/ghodss/yaml" "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..." const usage = "podex [-format=yaml|json] [-type=pod|container] [-id NAME] IMAGES..."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment