Esempio n. 1
0
File: util.go Progetto: spesnova/emp
func netrcPath() string {
	if s := os.Getenv("NETRC_PATH"); s != "" {
		return s
	}

	return filepath.Join(hkclient.HomePath(), netrcFilename)
}
Esempio n. 2
0
File: util.go Progetto: spesnova/emp
func hkHome() string {
	return filepath.Join(hkclient.HomePath(), ".hk")
}