From dfec8e0d6931ffa13759d4cd654924205180a560 Mon Sep 17 00:00:00 2001 From: Rafael Ruggiero Date: Wed, 10 Jul 2024 19:39:41 -0300 Subject: [PATCH] Fix a log message when removing a storage --- internal/commands/storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/commands/storage.go b/internal/commands/storage.go index f674b29..f1c8492 100644 --- a/internal/commands/storage.go +++ b/internal/commands/storage.go @@ -88,7 +88,7 @@ func storageSave() error { func storageRemove(_ *cobra.Command, args []string) error { name := args[0] - if !storageRmOptForce && !utils.AskUser("Do you really want to remove storage \"%s\" and its children?") { + if !storageRmOptForce && !utils.AskUser(fmt.Sprintf("Do you really want to remove storage \"%s\" and its children?", name)) { log.Fatal(fmt.Errorf("user interrupted")) }