From c4c93b591e660813ce4feb1fab8b9682f670386a Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Mon, 3 Oct 2022 15:05:42 +0300 Subject: [PATCH] cli: remove debug flag from VM CLI It's not used. --- cli/vm/vm.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cli/vm/vm.go b/cli/vm/vm.go index 9a0d780ed..860a4ad02 100644 --- a/cli/vm/vm.go +++ b/cli/vm/vm.go @@ -15,9 +15,7 @@ func NewCommands() []cli.Command { Name: "vm", Usage: "start the virtual machine", Action: startVMPrompt, - Flags: []cli.Flag{ - cli.BoolFlag{Name: "debug, d"}, - }, + Flags: []cli.Flag{}, }} }