예제 #1
0
파일: util.go 프로젝트: spesnova/emp
func netrcPath() string {
	if s := os.Getenv("NETRC_PATH"); s != "" {
		return s
	}

	return filepath.Join(hkclient.HomePath(), netrcFilename)
}
예제 #2
0
파일: util.go 프로젝트: spesnova/emp
func hkHome() string {
	return filepath.Join(hkclient.HomePath(), ".hk")
}