From 53fb4a3d1b68fa4e57b9778d6fbcc6d1548ff32f Mon Sep 17 00:00:00 2001 From: Nick Rohn Date: Wed, 2 Aug 2023 13:08:48 -0700 Subject: [PATCH] rename: skip-fetch-directories to skip-fetch - alias to skip-fetch-directories Authored-by: Nick Rohn --- internal/commands/bake.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/commands/bake.go b/internal/commands/bake.go index bcb902184..26f7197a4 100644 --- a/internal/commands/bake.go +++ b/internal/commands/bake.go @@ -176,7 +176,7 @@ type Bake struct { Sha256 bool ` long:"sha256" description:"calculates a SHA256 checksum of the output file"` StubReleases bool `short:"sr" long:"stub-releases" description:"skips importing release tarballs into the tile"` Version string `short:"v" long:"version" description:"version of the tile"` - SkipFetchReleases bool `short:"sfr" long:"skip-fetch-directories" description:"skips the automatic release fetch for all release directories"` + SkipFetchReleases bool `short:"sfr" long:"skip-fetch" description:"skips the automatic release fetch for all release directories" alias:"skip-fetch-directories"` } }