Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b45d0ce

Browse files
committedNov 5, 2020
fix wrong way of setting env variable
1 parent 5bbd44e commit b45d0ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎Taskfile.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ tasks:
1515
build-win32:
1616
desc: Build the project for win 32 bit
1717
cmds:
18-
- set GOARCH=386
18+
- export GOOS=windows
19+
- export GOARCH=386
1920
- go get github.com/akavel/rsrc
2021
- rsrc -arch=386 -manifest=manifest.xml
2122
- go build -v -i {{.WIN_LDFLAGS}}

0 commit comments

Comments
 (0)
Please sign in to comment.