diff options
author | 赵智超 <1012112796@qq.com> | 2020-03-17 00:46:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 18:46:26 +0200 |
commit | 19ebe2b956f5df49702805502a7d973222a87807 (patch) | |
tree | 1305de4838fa966498b4d5e1c1937e4036386b43 /contrib/ide | |
parent | cf7ece6245429f4caae874a35747d0d7345c1015 (diff) | |
download | gitea-19ebe2b956f5df49702805502a7d973222a87807.tar.gz gitea-19ebe2b956f5df49702805502a7d973222a87807.zip |
misc: change the "taskName" to "label" in vscode tasks.json (#10739)
because of vscode suggest
ref ISSUE: Microsoft/vscode-docs#1181
Signed-off-by: a1012112796 <1012112796@qq.com>
Diffstat (limited to 'contrib/ide')
-rw-r--r-- | contrib/ide/vscode/tasks.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ide/vscode/tasks.json b/contrib/ide/vscode/tasks.json index ac42806d67..a9876f7101 100644 --- a/contrib/ide/vscode/tasks.json +++ b/contrib/ide/vscode/tasks.json @@ -2,7 +2,7 @@ "version": "2.0.0", "tasks": [ { - "taskName": "Build", + "label": "Build", "type": "shell", "command": "go", "group": "build", @@ -25,7 +25,7 @@ "problemMatcher": ["$go"] }, { - "taskName": "Build (with SQLite3)", + "label": "Build (with SQLite3)", "type": "shell", "command": "go", "group": "build", |