mirror of
https://github.com/yudai/gotty.git
synced 2025-09-21 21:40:49 +02:00
13 lines
160 B
Go
13 lines
160 B
Go
package homedir
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func Expand(path string) string {
|
|
if path[0:2] == "~/" {
|
|
return os.Getenv("HOME") + path[1:]
|
|
} else {
|
|
return path
|
|
}
|
|
}
|