From e2b9cef690ba38dbe34aa108c9beddefbb295e01 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sun, 28 Jul 2019 04:20:54 -0600 Subject: [PATCH] not a windows gui, duh --- build-all.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-all.sh b/build-all.sh index fb0bfa6..63c34f0 100644 --- a/build-all.sh +++ b/build-all.sh @@ -12,10 +12,11 @@ go generate -mod=vendor ./... echo "" echo "Windows amd64" -GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.exe -ldflags "-s -w -H=windowsgui" $gocmd +#GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.exe -ldflags "-s -w -H=windowsgui" $gocmd +GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.exe -ldflags "-s -w" $gocmd GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.debug.exe echo "Windows 386" -GOOS=windows GOARCH=386 go build -mod=vendor -o dist/windows/386/${exe}.exe -ldflags "-s -w -H=windowsgui" $gocmd +GOOS=windows GOARCH=386 go build -mod=vendor -o dist/windows/386/${exe}.exe -ldflags "-s -w" $gocmd GOOS=windows GOARCH=386 go build -mod=vendor -o dist/windows/386/${exe}.debug.exe echo ""