mirror of
https://github.com/yudai/gotty.git
synced 2025-12-24 11:20:13 +01:00
13 lines
165 B
Go
13 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
|
|
}
|
|
}
|