From adc82b2fce533beb3b2e787b85ab1699741a410e Mon Sep 17 00:00:00 2001 From: fedeztk Date: Fri, 9 Sep 2022 17:40:28 +0200 Subject: [PATCH] fix(format): do not append additional new line --- format/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format/command.go b/format/command.go index 2c21078..f5292cb 100644 --- a/format/command.go +++ b/format/command.go @@ -41,6 +41,6 @@ func (o Options) Run() error { return err } - fmt.Println(v) + fmt.Print(v) return nil }