mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 17:34:57 +01:00
Fix "Couldn't find home directory" on OSX - fixes #15
This commit is contained in:
parent
ee6b39aa6c
commit
af9c447146
18
fs/config.go
18
fs/config.go
@ -56,11 +56,21 @@ type ConfigInfo struct {
|
||||
func configHome() string {
|
||||
// Find users home directory
|
||||
usr, err := user.Current()
|
||||
if err != nil {
|
||||
log.Printf("Couldn't find home directory: %v", err)
|
||||
return ""
|
||||
if err == nil {
|
||||
return usr.HomeDir
|
||||
}
|
||||
return usr.HomeDir
|
||||
// Fall back to reading $HOME - work around user.Current() not
|
||||
// working for cross compiled binaries on OSX.
|
||||
// https://github.com/golang/go/issues/6376
|
||||
home := os.Getenv("HOME")
|
||||
if home != "" {
|
||||
return home
|
||||
}
|
||||
log.Printf("Couldn't find home directory or read HOME environment variable.")
|
||||
log.Printf("Defaulting to storing config in current directory.")
|
||||
log.Printf("Use -config flag to workaround.")
|
||||
log.Printf("Error was: %v", err)
|
||||
return ""
|
||||
}
|
||||
|
||||
// Loads the config file
|
||||
|
Loading…
Reference in New Issue
Block a user