Skip to content

Commit

Permalink
Merge pull request #6 from ruggiero/main
Browse files Browse the repository at this point in the history
Fix a log message when removing a storage
  • Loading branch information
deadc0de6 authored Jul 11, 2024
2 parents 5b16775 + dfec8e0 commit e00ff5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/commands/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
}

Expand Down

0 comments on commit e00ff5a

Please sign in to comment.