From ec44ca58f1de2a35b046a303d8b76c39d428ee41 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Thu, 10 Feb 2022 21:25:43 +1100 Subject: [PATCH] Better output for build --- v2/pkg/commands/build/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/pkg/commands/build/build.go b/v2/pkg/commands/build/build.go index 7289ba08..b32a31ef 100644 --- a/v2/pkg/commands/build/build.go +++ b/v2/pkg/commands/build/build.go @@ -196,7 +196,7 @@ func Build(options *Options) (string, error) { // Do we need to pack the app for non-windows? if options.Pack && options.Platform != "windows" { - outputLogger.Print("Packaging application: ") + outputLogger.Print(" - Packaging application: ") // TODO: Allow cross platform build err = packageProject(options, runtime.GOOS)