func fileExists()

in cli/config.go [25:28]


func fileExists(path string) bool {
	_, err := os.Stat(path)
	return !os.IsNotExist(err)
}