5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-19 02:19:31 +08:00

fix: debug build should use terminal

This commit is contained in:
Lea Anthony 2019-10-29 07:57:29 +11:00
parent d77fa1ee74
commit 7f75f27f6b
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ func BuildApplication(binaryName string, forceRebuild bool, buildMode string, pa
}
// Add windows flags
if runtime.GOOS == "windows" {
if runtime.GOOS == "windows" && buildMode == BuildModeProd {
ldflags += "-H windowsgui "
}

View File

@ -1,4 +1,4 @@
package cmd
// Version - Wails version
const Version = "v0.18.13-pre"
const Version = "v0.18.14-pre"