You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function does not account for differences in addresses between Linux and Windows systems.
This causes an error:
here is the problem
Problem is because parameter "..." can be with wrong separators:
localfunctiondebugger_entrypoint(debugger_path)
returnM.join_paths(debugger_path, "out/src/vsDebugServer.js"<--- separators in this string will be always with invalid slashes)endThiswayshouldbeok:
M.join_paths(debugger_path, "out", "src", "vsDebugServer.js")
Can someone fix it? I'm not best in Lua...
The text was updated successfully, but these errors were encountered:
Ja-rek
changed the title
Differences in path to files between Linux and Windows systems.
Differences in path to files between Linux and Windows systems
Jan 14, 2025
The function does not account for differences in addresses between Linux and Windows systems.
This causes an error:

here is the problem

Problem is because parameter "..." can be with wrong separators:
Can someone fix it? I'm not best in Lua...
The text was updated successfully, but these errors were encountered: