From 8137835e41ad578518c8a94e7ed3b9d19bd4414f Mon Sep 17 00:00:00 2001 From: Haneef Mohammed Date: Wed, 15 Jan 2025 21:08:02 -0500 Subject: [PATCH] stupid trailing whitespace --- src/frontend/configprovider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/configprovider.ts b/src/frontend/configprovider.ts index 7809d784..96ed3915 100644 --- a/src/frontend/configprovider.ts +++ b/src/frontend/configprovider.ts @@ -277,7 +277,7 @@ export class CortexDebugConfigurationProvider implements vscode.DebugConfigurati if (config.executable) { let exe = config.executable; exe = path.isAbsolute(exe) ? exe : path.join(cwd || '.', exe); - config.executable = path.normalize(exe).replace(/\\/g, '/'); + config.executable = path.normalize(exe).replace(/\\/g, '/'); } const def = defSymbolFile(config.executable); const symFiles: SymbolFile[] = config.symbolFiles?.map((v) => typeof v === 'string' ? defSymbolFile(v) : v) || [def];