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
elseif (way is Way.Prompt) &&!empty(glob(gdb_cmd))
238
+
elseif (way is Way.Prompt) &&!empty(glob($'{cwd}{gdb_cmd}'))
234
239
err =$"You have a file/folder named '{gdb_cmd}' in the current directory Termdebug may not work properly. Please exit and rename such a file/folder."
235
-
elseif!empty(glob(asmbufname))
240
+
elseif!empty(glob($'{cwd}{asmbufname}'))
236
241
err =$"You have a file/folder named '{asmbufname}' in the current directory Termdebug may not work properly. Please exit and rename such a file/folder."
237
-
elseif!empty(glob(varbufname))
242
+
elseif!empty(glob($'{cwd}{varbufname}'))
238
243
err =$"You have a file/folder named '{varbufname}' in the current directory Termdebug may not work properly. Please exit and rename such a file/folder."
239
244
elseif!executable(gdb_cmd)
240
245
err =$"Cannot execute debugger program '{gdb_cmd}'"
0 commit comments