Skip to content

Commit

Permalink
stupid trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
haneefdm committed Jan 16, 2025
1 parent 8e9f233 commit 8137835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/configprovider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 8137835

Please sign in to comment.