gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

homedir_dynamic.go (171B)


      1 // +build !static_build
      2 
      3 package dbus
      4 
      5 import (
      6 	"os/user"
      7 )
      8 
      9 func lookupHomeDir() string {
     10 	u, err := user.Current()
     11 	if err != nil {
     12 		return "/"
     13 	}
     14 	return u.HomeDir
     15 }