Removed the check to see if the debugcommand path is absolute.

This commit is contained in:
Aaron 2015-05-08 14:52:14 -04:00
parent 431c158a65
commit 29bcf2a5db

View File

@ -87,11 +87,6 @@
function m.localDebuggerCommand(cfg)
if cfg.debugcommand then
if not path.isabsolute(cfg.debugcommand) then
print("Error: debugcommand must be an absolute path")
os.exit(1)
end
local dir = cfg.debugcommand
p.w('<LocalDebuggerCommand>%s</LocalDebuggerCommand>', path.translate(dir))
end