vscode: fix tasks

This commit is contained in:
Jacek Sieka 2019-11-25 13:51:47 +01:00
parent 2e875ea17e
commit 27da080c69
No known key found for this signature in database
GPG Key ID: A1B09461ABB656B8
1 changed files with 3 additions and 3 deletions

6
.vscode/tasks.json vendored
View File

@ -6,7 +6,7 @@
{
"label": "nim-beacon-chain build",
"type": "shell",
"command": "nimble build",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
@ -18,7 +18,7 @@
{
"label": "nim-beacon-chain test",
"type": "shell",
"command": "nimble test",
"command": "make test",
"group": {
"kind": "build",
"isDefault": true
@ -28,4 +28,4 @@
]
}
]
}
}