mirror of
https://github.com/schollz/croc.git
synced 2025-10-11 05:11:06 +02:00
Merge branch 'master' of github.com:schollz/croc
This commit is contained in:
commit
63ba28c9b0
1 changed files with 3 additions and 0 deletions
|
@ -131,6 +131,9 @@ func getConfigDir() (homedir string, err error) {
|
|||
return
|
||||
}
|
||||
homedir = path.Join(homedir, ".config", "croc")
|
||||
if xdgConfigHome, isSet := os.LookupEnv("XDG_CONFIG_HOME"); isSet {
|
||||
homedir = path.Join(xdgConfigHome, "croc")
|
||||
}
|
||||
if _, err = os.Stat(homedir); os.IsNotExist(err) {
|
||||
log.Debugf("creating home directory %s", homedir)
|
||||
err = os.MkdirAll(homedir, 0700)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue