diff options
author | actboy168 <actboy168@gmail.com> | 2019-06-10 16:03:59 +0800 |
---|---|---|
committer | actboy168 <actboy168@gmail.com> | 2019-06-10 16:03:59 +0800 |
commit | 7d1a60dfcbffd163c56cc319bd13a51e8ff405b1 (patch) | |
tree | ffaca535468c7a019a4b19469cad49e25920b46b /.vscode/tasks.json | |
parent | 55ec1070ea56297151f06a988322c4a8b404c607 (diff) | |
download | lua-language-server-7d1a60dfcbffd163c56cc319bd13a51e8ff405b1.zip |
安装脚本
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0477aa2e..11a5f61e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,6 +5,28 @@ "type": "shell", "label": "编译", "command": "cd 3rd\\luamake && tools\\ninja -f ninja\\msvc.ninja && cd ..\\.. && 3rd\\luamake\\luamake rebuild" + }, + { + "label": "Copy Extension", + "command": "${workspaceFolder}/build/lua", + "args": [ + "make/copy.lua", + "${command:extensionPath}" + ], + "type": "shell", + "windows": { + "options": { + "shell": { + "executable": "C:\\Windows\\System32\\cmd.exe", + "args": [ + "/c" + ] + } + } + }, + "options": { + "cwd": "${workspaceFolder}" + }, } ] -} +}
\ No newline at end of file |