Skip to content
This repository has been archived by the owner on Jul 16, 2018. It is now read-only.

Commit

Permalink
Remove printing name= in printing
Browse files Browse the repository at this point in the history
since this is a 1-1 from the configmap's key
  • Loading branch information
chmouel committed Jun 27, 2017
1 parent fc381d8 commit 1e7d1e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmds/environ.go
Expand Up @@ -58,8 +58,8 @@ func NewCmdGetEnviron(f *cmdutil.Factory) *cobra.Command {
var ed EnvironmentData
err := yaml.Unmarshal([]byte(data), &ed)
cmdutil.CheckErr(err)
fmt.Printf("%-10s name=%s namespace=%s order=%d\n",
key, ed.Name, ed.Namespace, ed.Order)
fmt.Printf("%-10s namespace=%s order=%d\n",
key, ed.Namespace, ed.Order)
}
}
},
Expand Down

0 comments on commit 1e7d1e3

Please sign in to comment.