From acb5f97f9d9ef6284d216e9302023ad1998dd997 Mon Sep 17 00:00:00 2001 From: Alex Jia Date: Mon, 19 Jun 2023 14:47:01 +0800 Subject: [PATCH] cmd/podman/root.go: fix help document issue of the image store [NO NEW TESTS NEEDED] Signed-off-by: Alex Jia --- cmd/podman/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/podman/root.go b/cmd/podman/root.go index 8d51d7240f..8ceb0342c2 100644 --- a/cmd/podman/root.go +++ b/cmd/podman/root.go @@ -508,7 +508,7 @@ func rootFlags(cmd *cobra.Command, podmanConfig *entities.PodmanConfig) { _ = cmd.RegisterFlagCompletionFunc(runrootFlagName, completion.AutocompleteDefault) imageStoreFlagName := "imagestore" - pFlags.StringVar(&podmanConfig.ImageStore, imageStoreFlagName, "", "Path to the `image store`, different from `graph root`, use this to split storing the image into a separate `image store`, see `man containers-storage.conf` for details") + pFlags.StringVar(&podmanConfig.ImageStore, imageStoreFlagName, "", "Path to the 'image store', different from 'graph root', use this to split storing the image into a separate 'image store', see 'man containers-storage.conf' for details") _ = cmd.RegisterFlagCompletionFunc(imageStoreFlagName, completion.AutocompleteDefault) pFlags.BoolVar(&podmanConfig.TransientStore, "transient-store", false, "Enable transient container storage")