bundle: fix for newer go version

pull/14/head
Astro 2021-06-30 21:36:07 +02:00
parent 11a40de18a
commit 520898c1db
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,10 @@
{ pkgs }:
pkgs.runCommandNoCC "win-bundle-installer.exe" {} ''
mkdir bundle
cd bundle
cp ${./go.mod} go.mod
cp ${./main.go} main.go
env HOME=$(mktemp -d) GOOS=windows GOARCH=amd64 ${pkgs.go}/bin/go build
mv build.exe $out
mv bundle.exe $out
''

3
wfvm/bundle/go.mod Normal file
View File

@ -0,0 +1,3 @@
module bundle
go 1.11