Example #1
0
File: util.go Project: mhahn/empire
func netrcPath() string {
	if s := os.Getenv("NETRC_PATH"); s != "" {
		return s
	}

	return filepath.Join(hkclient.HomePath(), netrcFilename)
}
Example #2
0
File: util.go Project: mhahn/empire
func hkHome() string {
	return filepath.Join(hkclient.HomePath(), ".hk")
}