peco.peco/config_darwin.go

15 lines
200 B
Go

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