Remove tabs.

This commit is contained in:
Gregory Kurtzer
2021-04-20 13:05:12 -04:00
parent 000a759214
commit cc0f465eaf
2 changed files with 3 additions and 3 deletions

View File

@@ -10,11 +10,11 @@ var (
RunE: CobraRunE,
Args: cobra.MinimumNArgs(1),
}
SetYes bool
SetYes bool
)
func init() {
baseCmd.PersistentFlags().BoolVarP(&SetYes, "yes", "y", false, "Set 'yes' to all questions asked")
baseCmd.PersistentFlags().BoolVarP(&SetYes, "yes", "y", false, "Set 'yes' to all questions asked")
}
// GetRootCommand returns the root cobra.Command for the application.