Restore the use of cobra.OnInitialize in cobra executable

Without cobra.OnInitialize, cobra does not see the --config
command-line option and always tries to load $HOME/.cobra.yaml
instead.
This commit is contained in:
Anthony Fok 2017-07-30 01:19:17 -06:00
parent d4c40bbacf
commit cb9cf94690

View file

@ -40,7 +40,7 @@ func Execute() {
}
func init() {
initViper()
cobra.OnInitialize(initConfig)
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)")
rootCmd.PersistentFlags().StringP("author", "a", "YOUR NAME", "author name for copyright attribution")
@ -55,7 +55,7 @@ func init() {
rootCmd.AddCommand(initCmd)
}
func initViper() {
func initConfig() {
if cfgFile != "" {
// Use config file from the flag.
viper.SetConfigFile(cfgFile)