func main()

in herokuish.go [79:100]


func main() {
	os.Setenv("HEROKUISH_VERSION", Version)
	funcs := map[string]func([]string){
		"yaml-keys": YamlKeys,
		"yaml-get":  YamlGet,
		"asset-cat": AssetCat,
	}
	scripts := []string{
		"include/herokuish.bash",
		"include/fn.bash",
		"include/cmd.bash",
		"include/buildpack.bash",
		"include/procfile.bash",
		"include/slug.bash",
	}

	if os.Getenv("BASH_BIN") == "" {
		basher.Application(funcs, scripts, Asset, true)
	} else {
		basher.ApplicationWithPath(funcs, scripts, Asset, true, os.Getenv("BASH_BIN"))
	}
}