Skip to content

Commit b10abd3

Browse files
committed
change bin
1 parent 3ff7882 commit b10abd3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
!/meta/template
88
!/meta/3rd
99
/bin2
10+
/Windows
11+
/Linux
12+
/macOS

.vscode/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"request": "launch",
99
"stopOnEntry": false,
1010
"program": "${workspaceRoot}/test.lua",
11-
"luaexe": "${workspaceFolder}/bin/Windows/lua-language-server.exe",
11+
"luaexe": "${workspaceFolder}/Windows/lua-language-server.exe",
1212
"cpath": null,
1313
"arg": [
1414
],
@@ -40,9 +40,9 @@
4040
"type": "lua",
4141
"request": "launch",
4242
"stopOnEntry": false,
43-
"luaexe": "${workspaceFolder}/bin/Windows/lua-language-server.exe",
43+
"luaexe": "${workspaceFolder}/Windows/lua-language-server.exe",
4444
"program": "${workspaceRoot}/tools/build-3rd-meta.lua",
45-
"cpath": "${workspaceFolder}/bin/Windows/?.dll",
45+
"cpath": "${workspaceFolder}/Windows/?.dll",
4646
"arg": [
4747
],
4848
"luaVersion": "latest",

test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package.path = package.path
22
.. ';./test/?.lua'
33
.. ';./test/?/init.lua'
44
local fs = require 'bee.filesystem'
5-
local rootPath = fs.exe_path():parent_path():parent_path():parent_path():string()
5+
local rootPath = fs.exe_path():parent_path():parent_path():string()
66
ROOT = fs.path(rootPath)
77
TEST = true
88
DEVELOP = true

0 commit comments

Comments
 (0)