Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
riteshnoronha committed Aug 21, 2024
1 parent a25510c commit fa63dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ var generateCmd = &cobra.Command{
return generateYaml(ctx)
}
} else {
return fmt.Errorf(fmt.Sprintf("arguments missing%s", "list of valid command eg. features"))
return fmt.Errorf("arguments missing%s", "list of valid command eg. features")
}
return fmt.Errorf(fmt.Sprintf("invalid arguments%s", "list of valid command eg. features"))
return fmt.Errorf("invalid arguments%s", "list of valid command eg. features")
},
}

Expand Down

0 comments on commit fa63dac

Please sign in to comment.