From 219a4e5f9caddf533a5992d679f2e45852901b4d Mon Sep 17 00:00:00 2001 From: Will Roden Date: Mon, 4 Nov 2019 17:42:31 -0600 Subject: [PATCH] dir, not door --- cmd/bindownloader/main.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cmd/bindownloader/main.go b/cmd/bindownloader/main.go index 0c21930..646590b 100644 --- a/cmd/bindownloader/main.go +++ b/cmd/bindownloader/main.go @@ -10,14 +10,14 @@ import ( ) var kongVars = kong.Vars{ - "arch_help": `download for this architecture`, - "arch_default": runtime.GOARCH, - "os_help": `download for this operating system`, - "os_default": runtime.GOOS, - "config_help": `file with tool definitions`, - "config_default": `buildtools.json`, - "force_help": `force download even if it already exists`, - "cellar_door_help": `directory where downloads will be cached`, + "arch_help": `download for this architecture`, + "arch_default": runtime.GOARCH, + "os_help": `download for this operating system`, + "os_default": runtime.GOOS, + "config_help": `file with tool definitions`, + "config_default": `buildtools.json`, + "force_help": `force download even if it already exists`, + "cellar_dir_help": `directory where downloads will be cached`, } var cli struct { @@ -26,7 +26,7 @@ var cli struct { Config string `kong:"type=path,help=${config_help},default=${config_default}"` Force bool `kong:"help=${force_help}"` TargetFile string `kong:"arg,help='file to download'"` - CellarDir string `kong:"type=path,help=${cellar_door_help}"` + CellarDir string `kong:"type=path,help=${cellar_dir_help}"` } func main() {