Skip to content

Commit c41f630

Browse files
committed
update vscode tasks
1 parent 7c7b235 commit c41f630

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@
1212
*.out
1313

1414
debug
15-
cli
16-
cli.exe
17-
hsperfdata/debug.test
15+
hsperfdata/debug.test
16+
hstat*

.vscode/tasks.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
"command": "go",
1010
"args": [
1111
"build",
12+
"-o",
13+
"hstat_windows_amd64.exe",
1214
"-ldflags",
1315
"-w -s",
14-
"${file}"
16+
"cmd/hstat.go"
1517
],
1618
"options": {
1719
"env": {
@@ -31,9 +33,11 @@
3133
"command": "go",
3234
"args": [
3335
"build",
36+
"-o",
37+
"hstat_linux_amd64",
3438
"-ldflags",
3539
"-w -s",
36-
"${file}"
40+
"cmd/hstat.go"
3741
],
3842
"options": {
3943
"env": {
@@ -53,9 +57,11 @@
5357
"command": "go",
5458
"args": [
5559
"build",
60+
"-o",
61+
"hstat_darwin_amd64",
5662
"-ldflags",
5763
"-w -s",
58-
"${file}"
64+
"cmd/hstat.go"
5965
],
6066
"options": {
6167
"env": {

0 commit comments

Comments
 (0)