Skip to content

Commit

Permalink
Fix tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mopo3ilo committed Aug 23, 2022
1 parent 9c000cf commit f947699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"label": "build.elf",
"type": "shell",
"group": "build",
"command": "mkdir -p build && GOOS=linux GOARCH=amd64 go build -ldflags=\"-s\" -o ./1cv8metadata . && strip ./1cv8metadata && upx -9 -q ./1cv8metadata",
"command": "GOOS=linux GOARCH=amd64 go build -ldflags=\"-s\" -o ./1cv8metadata . && strip ./1cv8metadata && upx -9 -q ./1cv8metadata",
},
{
"label": "build.exe",
"type": "shell",
"group": "build",
"command": "mkdir -p build && GOOS=windows GOARCH=amd64 go build -ldflags=\"-s\" -o ./1cv8metadata.exe . && strip ./1cv8metadata.exe && upx -9 -q ./1cv8metadata.exe",
"command": "GOOS=windows GOARCH=amd64 go build -ldflags=\"-s\" -o ./1cv8metadata.exe . && strip ./1cv8metadata.exe && upx -9 -q ./1cv8metadata.exe",
},
{
"label": "build",
Expand Down

0 comments on commit f947699

Please sign in to comment.