Declare variables at the top of function
This commit is contained in:
parent
ce5f14db5d
commit
f0cf3e12b6
@ -110,10 +110,11 @@ func LoadConfigFile(configPath string) (*Config, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func getConfigPath() string {
|
func getConfigPath() string {
|
||||||
var tryPath, configPath string
|
var tryPath, configPath, homeDir, cwd string
|
||||||
|
var err error
|
||||||
|
|
||||||
// ~/.lumerc
|
// ~/.lumerc
|
||||||
homeDir, err := os.UserHomeDir()
|
homeDir, err = os.UserHomeDir()
|
||||||
if err == nil {
|
if err == nil {
|
||||||
tryPath = path.Join(homeDir, lumercFile)
|
tryPath = path.Join(homeDir, lumercFile)
|
||||||
if _, err := os.Stat(tryPath); !os.IsNotExist(err) {
|
if _, err := os.Stat(tryPath); !os.IsNotExist(err) {
|
||||||
@ -122,7 +123,7 @@ func getConfigPath() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ./.lumerc
|
// ./.lumerc
|
||||||
cwd, err := os.Getwd()
|
cwd, err = os.Getwd()
|
||||||
if err == nil {
|
if err == nil {
|
||||||
tryPath = path.Join(cwd, lumercFile)
|
tryPath = path.Join(cwd, lumercFile)
|
||||||
if _, err := os.Stat(tryPath); !os.IsNotExist(err) {
|
if _, err := os.Stat(tryPath); !os.IsNotExist(err) {
|
||||||
|
Loading…
Reference in New Issue
Block a user