commands: Remove flagChanged from commandeer

This commit is contained in:
bogem
2017-02-20 13:50:34 +05:00
committed by Bjørn Erik Pedersen
parent eb27c47fc5
commit c7535b9c25
3 changed files with 6 additions and 6 deletions

View File

@@ -461,13 +461,13 @@ func (c *commandeer) initializeFlags(cmd *cobra.Command) {
}
func (c *commandeer) setValueFromFlag(flags *flag.FlagSet, key string) {
if c.flagChanged(flags, key) {
if flagChanged(flags, key) {
f := flags.Lookup(key)
c.Set(key, f.Value.String())
}
}
func (c *commandeer) flagChanged(flags *flag.FlagSet, key string) bool {
func flagChanged(flags *flag.FlagSet, key string) bool {
flag := flags.Lookup(key)
if flag == nil {
return false