From 23468ce7c72fe7f34bec3fdb2ab9a84c19eb3668 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 27 Jul 2020 21:08:06 +1000 Subject: [PATCH] Don't clean up windows files --- cmd/helpers.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cmd/helpers.go b/cmd/helpers.go index 7bbf97758..a3767c6bf 100644 --- a/cmd/helpers.go +++ b/cmd/helpers.go @@ -293,9 +293,11 @@ func BuildApplication(binaryName string, forceRebuild bool, buildMode string, pa fmt.Println(err) } } - if projectOptions.Platform == "windows" { - helper.CleanWindows(projectOptions) - } + // Removed by popular demand + // TODO: Potentially add a flag to cleanup + // if projectOptions.Platform == "windows" { + // helper.CleanWindows(projectOptions) + // } }() if projectOptions.CrossCompile {