From 090f4dc905e1d68b5a3e41e04feafe6063c85639 Mon Sep 17 00:00:00 2001 From: Zack Brady Date: Mon, 9 Dec 2024 08:13:33 -0500 Subject: [PATCH] fixed cli desc for store env var (#374) --- cmd/hauler/cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/hauler/cli/cli.go b/cmd/hauler/cli/cli.go index f5233a9..c7e2d08 100644 --- a/cmd/hauler/cli/cli.go +++ b/cmd/hauler/cli/cli.go @@ -16,7 +16,7 @@ func New(ctx context.Context, binaries embed.FS, ro *flags.CliRootOpts) *cobra.C cmd := &cobra.Command{ Use: "hauler", Short: "Airgap Swiss Army Knife", - Example: " View the Docs: https://docs.hauler.dev\n Environment Variables: " + consts.HaulerDir + " | " + consts.HaulerTempDir + " | " + consts.HaulerIgnoreErrors, + Example: " View the Docs: https://docs.hauler.dev\n Environment Variables: " + consts.HaulerDir + " | " + consts.HaulerTempDir + " | " + consts.HaulerStoreDir + " | " + consts.HaulerIgnoreErrors, PersistentPreRunE: func(cmd *cobra.Command, args []string) error { l := log.FromContext(ctx) l.SetLevel(ro.LogLevel)