Codebase list golang-dbus / debian/5.0.3-2 homedir_dynamic.go
debian/5.0.3-2

Tree @debian/5.0.3-2 (Download .tar.gz)

homedir_dynamic.go @debian/5.0.3-2raw · history · blame

// +build !static_build

package dbus

import (
	"os/user"
)

func lookupHomeDir() string {
	u, err := user.Current()
	if err != nil {
		return "/"
	}
	return u.HomeDir
}