We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 809c35b commit 8a642c0Copy full SHA for 8a642c0
.vscode/tasks.json
@@ -41,7 +41,15 @@
41
},
42
{
43
"label": "Install",
44
- "command": "${workspaceFolder}/server/build/lua",
+ "windows": {
45
+ "command": "${workspaceFolder}/server/build/msvc/bin/lua.exe",
46
+ "args": [
47
+ "-e",
48
+ "package.cpath = \"./server/build/msvc/bin/?.dll;\" .. package.cpath",
49
+ "make/copy.lua",
50
+ "${command:extensionPath}",
51
+ ],
52
+ },
53
"linux": {
54
"command": "${workspaceFolder}/server/build/linux/bin/lua",
55
"args": [
@@ -60,12 +68,6 @@
60
68
"${command:extensionPath}",
61
69
],
62
70
63
- "args": [
64
- "-e",
65
- "package.cpath = \"./server/build/?.so;\" .. package.cpath",
66
- "make/copy.lua",
67
- "${command:extensionPath}",
- ],
71
}
72
]
73
0 commit comments