diff --git a/utio/dir.go b/utio/dir.go index 2dbea0f..f78b508 100644 --- a/utio/dir.go +++ b/utio/dir.go @@ -2,13 +2,11 @@ package utio import ( "os" - - homedir "github.com/mitchellh/go-homedir" ) // Home gives back the home directory for the current user. func Home() (string, error) { - return homedir.Dir() + return os.UserHomeDir() } // PathExists tests if the supplied path exists.