From 092b199c45bd9dcbe26d0ca02a3efe8b754977c7 Mon Sep 17 00:00:00 2001 From: PJ Quirk Date: Fri, 25 Sep 2020 15:31:52 -0400 Subject: [PATCH] Fix a spelling mistake --- src/commonflags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commonflags.go b/src/commonflags.go index 7347418..24986e7 100644 --- a/src/commonflags.go +++ b/src/commonflags.go @@ -10,7 +10,7 @@ type CommonFlags struct { } func (f *CommonFlags) Init(cmd *cobra.Command) { - cmd.Flags().StringVar(&f.CacheDir, "cache-dir", "", "Directory containing the repopositories cache created by the `pull` command") + cmd.Flags().StringVar(&f.CacheDir, "cache-dir", "", "Directory containing the repositories cache created by the `pull` command") _ = cmd.MarkFlagRequired("cache-dir") cmd.Flags().StringVar(&f.RepoName, "repo-name", "", "Single repository name to pull")