mirror of
https://github.com/thegeeklab/wp-git-action.git
synced 2024-11-09 17:10:41 +00:00
16 lines
189 B
Go
16 lines
189 B
Go
package plugin
|
|
|
|
import (
|
|
"os/user"
|
|
)
|
|
|
|
func getUserHomeDir() string {
|
|
home := "/root"
|
|
|
|
if currentUser, err := user.Current(); err == nil {
|
|
home = currentUser.HomeDir
|
|
}
|
|
|
|
return home
|
|
}
|