peco.peco/config_darwin.go
Daisuke Maki 620e324c5e golint
2014-07-12 16:41:30 +09:00

15 lines
207 B
Go

package peco
import (
"fmt"
"os"
)
func homedir() (string, error) {
home := os.Getenv("HOME")
if home == "" {
return "", fmt.Errorf("error: Environment variable HOME not set")
}
return home, nil
}