From 8acfeba3e1e2693e47cdac70b2557c7eba96e084 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sun, 15 Aug 2021 21:32:47 +1000 Subject: [PATCH] [windows-x] Fix compress text output --- v2/pkg/commands/build/base.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v2/pkg/commands/build/base.go b/v2/pkg/commands/build/base.go index 7f0e9a2c..8c4986dd 100644 --- a/v2/pkg/commands/build/base.go +++ b/v2/pkg/commands/build/base.go @@ -336,7 +336,7 @@ func (b *BaseBuilder) CompileProject(options *Options) error { return nil } - println("Compressing application: ") + fmt.Printf("Compressing application: ") // Do we have upx installed? if !shell.CommandExists("upx") { @@ -359,6 +359,7 @@ func (b *BaseBuilder) CompileProject(options *Options) error { if err != nil { return errors.Wrap(err, "Error during compression:") } + println("Done.") if verbose { println(string(output)) }