Use os.Getenv("HOME") instead of "$HOME" for windows compatibility (#337)
This commit is contained in:
		
				
					committed by
					
						
						Albert Nigmatzianov
					
				
			
			
				
	
			
			
			
						parent
						
							b655df6ce8
						
					
				
				
					commit
					a3cd8ab85a
				
			@ -210,7 +210,7 @@ func initConfig() {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	viper.SetConfigName(".{{ .appName }}") // name of config file (without extension)
 | 
						viper.SetConfigName(".{{ .appName }}") // name of config file (without extension)
 | 
				
			||||||
	viper.AddConfigPath("$HOME")  // adding home directory as first search path
 | 
						viper.AddConfigPath(os.Getenv("HOME")) // adding home directory as first search path
 | 
				
			||||||
	viper.AutomaticEnv()                   // read in environment variables that match
 | 
						viper.AutomaticEnv()                   // read in environment variables that match
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// If a config file is found, read it in.
 | 
						// If a config file is found, read it in.
 | 
				
			||||||
 | 
				
			|||||||
@ -62,7 +62,7 @@ func initConfig() {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	viper.SetConfigName(".cobra")          // name of config file (without extension)
 | 
						viper.SetConfigName(".cobra")          // name of config file (without extension)
 | 
				
			||||||
	viper.AddConfigPath("$HOME")  // adding home directory as first search path
 | 
						viper.AddConfigPath(os.Getenv("HOME")) // adding home directory as first search path
 | 
				
			||||||
	viper.AutomaticEnv()                   // read in environment variables that match
 | 
						viper.AutomaticEnv()                   // read in environment variables that match
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// If a config file is found, read it in.
 | 
						// If a config file is found, read it in.
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user