[windows-x] Fix compress text output

This commit is contained in:
Lea Anthony
2021-08-15 21:32:47 +10:00
parent 09bae529de
commit 8acfeba3e1

View File

@@ -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))
}