From ffe007aec8b8769b5ac6feb2fda09f13f8be42af Mon Sep 17 00:00:00 2001 From: axtlos Date: Sat, 16 Sep 2023 18:31:24 +0200 Subject: [PATCH] Feat: Show distrobox output in create command Displays the distrobox output when the user creates a new container --- core/dbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbox.go b/core/dbox.go index 7fc0e9f3..b5803dbf 100644 --- a/core/dbox.go +++ b/core/dbox.go @@ -246,7 +246,7 @@ func (d *dbox) CreateContainer(name string, image string, additionalPackages []s } engineFlags = append(engineFlags, "--label=manager=apx") - _, err := d.RunCommand("create", args, engineFlags, false, true, true, rootFull) + _, err := d.RunCommand("create", args, engineFlags, false, false, false, rootFull) // fmt.Println(string(out)) return err }