Went back to single script for luadebug

This commit is contained in:
U-ENGINEERO\joppe.blondel
2025-10-27 14:39:55 +01:00
parent 349cbc8175
commit fa0c8d5a2c
5 changed files with 141 additions and 206 deletions

View File

@ -4,7 +4,7 @@ config.plugins.jpdebug = {
targets = {
["test - msys"] = {
type = "shell",
cmd = {"C:\\msys64\\msys2_shell.cmd", "-defterm", "-here", "-no-start", "-ucrt64", "-shell", "bash", "-c", "lua test.lua"}
cmd = {"C:\\msys64\\ucrt64\\bin\\lua.exe", "test.lua"}
},
["test"] = {
type = "shell",
@ -14,7 +14,8 @@ config.plugins.jpdebug = {
type = "luadebug",
entry = "test.lua",
cwd = ".",
lua = {"lua"},
-- lua = {"lua"},
lua = {"C:\\msys64\\ucrt64\\bin\\lua.exe"},
},
},
default_target = "luadebug"