10 lines
216 B
Lua
10 lines
216 B
Lua
|
if os.getenv "LOCAL_LUA_DEBUGGER_VSCODE" ~= "1" then
|
||
|
print "You must run this script with the lua local debugger."
|
||
|
end
|
||
|
|
||
|
require("lldebugger").start()
|
||
|
|
||
|
for _, test_file in pairs { ... } do
|
||
|
dofile(test_file)
|
||
|
end
|