We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bde088 commit ae904ecCopy full SHA for ae904ec
Extension/src/common.ts
@@ -358,6 +358,9 @@ export function findExePathInArgs(args: string[]): string | undefined {
358
if (exePath?.startsWith("/Fe")) {
359
return exePath.substring(3);
360
}
361
+ if (exePath?.toLowerCase().startsWith("/out:")) {
362
+ return exePath.substring(5);
363
+ }
364
return exePath;
365
366
@@ -538,7 +541,7 @@ export function createDirIfNotExistsSync(filePath: string | undefined): void {
538
541
539
542
const dirPath: string = path.dirname(filePath);
540
543
if (!checkDirectoryExistsSync(dirPath)) {
- fs.mkdirSync(dirPath);
544
+ fs.mkdirSync(dirPath, { recursive: true });
545
546
547
0 commit comments