mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
Bumps [github.com/zalando/go-keyring](https://github.com/zalando/go-keyring) from 0.2.1 to 0.2.3. - [Release notes](https://github.com/zalando/go-keyring/releases) - [Commits](https://github.com/zalando/go-keyring/compare/v0.2.1...v0.2.3) --- updated-dependencies: - dependency-name: github.com/zalando/go-keyring dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
26 lines
571 B
Go
Generated
26 lines
571 B
Go
Generated
package dbus
|
|
|
|
import (
|
|
"os"
|
|
"os/user"
|
|
)
|
|
|
|
// Get returns the home directory of the current user, which is usually the
|
|
// value of HOME environment variable. In case it is not set or empty, os/user
|
|
// package is used.
|
|
//
|
|
// If linking statically with cgo enabled against glibc, make sure the
|
|
// osusergo build tag is used.
|
|
//
|
|
// If needing to do nss lookups, do not disable cgo or set osusergo.
|
|
func getHomeDir() string {
|
|
homeDir := os.Getenv("HOME")
|
|
if homeDir != "" {
|
|
return homeDir
|
|
}
|
|
if u, err := user.Current(); err == nil {
|
|
return u.HomeDir
|
|
}
|
|
return "/"
|
|
}
|