Example #1
0
File: util.go Project: spesnova/emp
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: spesnova/emp
func hkHome() string {
	return filepath.Join(hkclient.HomePath(), ".hk")
}