2767d9ba05
These were deprecated inddd9665289
(v25.0), and3c1de2e667
, and are no longer used. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
28 lines
756 B
Go
28 lines
756 B
Go
package homedir
|
|
|
|
import (
|
|
"os"
|
|
"os/user"
|
|
"runtime"
|
|
)
|
|
|
|
// Get returns the home directory of the current user with the help of
|
|
// environment variables depending on the target operating system.
|
|
// Returned path should be used with "path/filepath" to form new paths.
|
|
//
|
|
// On non-Windows platforms, it falls back to nss lookups, if the home
|
|
// directory cannot be obtained from environment-variables.
|
|
//
|
|
// If linking statically with cgo enabled against glibc, ensure the
|
|
// osusergo build tag is used.
|
|
//
|
|
// If needing to do nss lookups, do not disable cgo or set osusergo.
|
|
func Get() string {
|
|
home, _ := os.UserHomeDir()
|
|
if home == "" && runtime.GOOS != "windows" {
|
|
if u, err := user.Current(); err == nil {
|
|
return u.HomeDir
|
|
}
|
|
}
|
|
return home
|
|
}
|