From 29bcf2a5db7dc6fa9498d7403a37a357dbc2336d Mon Sep 17 00:00:00 2001 From: Aaron Date: Fri, 8 May 2015 14:52:14 -0400 Subject: [PATCH] Removed the check to see if the debugcommand path is absolute. --- src/actions/vstudio/vs2010_vcxproj_user.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/actions/vstudio/vs2010_vcxproj_user.lua b/src/actions/vstudio/vs2010_vcxproj_user.lua index bc54aae3..8c4e75e8 100755 --- a/src/actions/vstudio/vs2010_vcxproj_user.lua +++ b/src/actions/vstudio/vs2010_vcxproj_user.lua @@ -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('%s', path.translate(dir)) end