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

@@ -95,11 +95,11 @@ func NewContent(cmd *cobra.Command, args []string) error {
c := newCommandeer(cfg)
if c.flagChanged(cmd.Flags(), "format") {
if flagChanged(cmd.Flags(), "format") {
c.Set("metaDataFormat", configFormat)
}
if c.flagChanged(cmd.Flags(), "editor") {
if flagChanged(cmd.Flags(), "editor") {
c.Set("newContentEditor", contentEditor)
}