mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-12 16:44:24 +00:00
14 lines
165 B
Go
14 lines
165 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func ExpandHomeDir(path string) string {
|
||
|
if path[0:2] == "~/" {
|
||
|
return os.Getenv("HOME") + path[1:]
|
||
|
} else {
|
||
|
return path
|
||
|
}
|
||
|
}
|