We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66711c0 commit 045ef4aCopy full SHA for 045ef4a
.vscode/tasks.json
@@ -43,8 +43,10 @@
43
"label": "Install",
44
"command": "${workspaceFolder}/server/build/lua",
45
"args": [
46
+ "-e",
47
+ "package.cpath = './server/build/?.so;' .. package.cpath",
48
"make/copy.lua",
- "${command:extensionPath}"
49
+ "${command:extensionPath}",
50
],
51
}
52
]
make/copy.lua
@@ -1,6 +1,8 @@
1
local fs = require 'bee.filesystem'
2
local pf = require 'bee.platform'
3
4
+print(package.cpath)
5
+
6
local function getExtensionDirName(packageDir)
7
local publisher,name,version
8
for line in io.lines(packageDir .. '/package.json') do
0 commit comments