From 9e098428040f8d120fcc84debd4fe90cdddb4560 Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Tue, 31 Mar 2026 14:23:14 +0200 Subject: [PATCH] chore; remove silent --- src/modules/runner/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/runner/runner.go b/src/modules/runner/runner.go index cb269a1..eda4bca 100644 --- a/src/modules/runner/runner.go +++ b/src/modules/runner/runner.go @@ -47,7 +47,7 @@ func RunMeshbook(binPath, bookPath, targGroup string) (bool, string) { if len(bookPath) == 0 { args = []string{"--help"} } else { - args = []string{"--nograce", "--indent", "--silent", "-mb", bookPath, "--group", targGroup} + args = []string{"--nograce", "--indent", "-mb", bookPath, "--group", targGroup} } log.Printf("running with parameters: %v", args)