Merge pull request #623 from tendermint/fix/no-config-on-version

cmd: don't load config for version command. closes #620
This commit is contained in:
Ethan Buchman
2017-08-30 16:42:58 -04:00
committed by GitHub

View File

@ -38,6 +38,9 @@ var RootCmd = &cobra.Command{
Use: "tendermint",
Short: "Tendermint Core (BFT Consensus) in Go",
PersistentPreRunE: func(cmd *cobra.Command, args []string) (err error) {
if cmd.Name() == versionCmd.Name() {
return nil
}
config, err = ParseConfig()
if err != nil {
return err