From 9f4cd5bae76326881966ce0ffbb60fca94c75762 Mon Sep 17 00:00:00 2001 From: Tim Peeters Date: Mon, 7 Aug 2023 18:48:57 +0200 Subject: [PATCH] Fix typo in documentation of the new image-pull-policy option. (#113) --- internal/command/create/vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/create/vm.go b/internal/command/create/vm.go index 435ed93..d9ef9dd 100644 --- a/internal/command/create/vm.go +++ b/internal/command/create/vm.go @@ -50,7 +50,7 @@ func newCreateVMCommand() *cobra.Command { "host directories to mount to the VM, can be specified multiple times and/or be comma-separated "+ "(see \"tart run\"'s --dir argument for syntax)") command.PersistentFlags().StringVar(&imagePullPolicy, "image-pull-policy", string(v1.ImagePullPolicyIfNotPresent), - fmt.Sprintf("image pull policy for this VM, by default the image is only only pulled if it doesn't "+ + fmt.Sprintf("image pull policy for this VM, by default the image is only pulled if it doesn't "+ "exist in the cache (%q), specify %q to always try to pull the image", v1.ImagePullPolicyIfNotPresent, v1.ImagePullPolicyAlways))