From 8174f57b2d5ed1853f71e773c950e7d672a1a42f Mon Sep 17 00:00:00 2001 From: Rob Muhlestein Date: Mon, 21 Nov 2022 19:02:19 -0500 Subject: [PATCH] Fix minor annoying blank line after errors --- z/bonzai.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/z/bonzai.go b/z/bonzai.go index ad10cc6..d2fe8e2 100644 --- a/z/bonzai.go +++ b/z/bonzai.go @@ -262,7 +262,7 @@ func ExitError(err ...interface{}) { case error: out := fmt.Sprintf("%v", e) if len(out) > 0 { - PrintMark(out) + fmt.Println(strings.TrimSpace(Mark(out))) } }