()
| 441 | } |
| 442 | |
| 443 | function getArgvConfigPath(): string { |
| 444 | const vscodePortable = process.env['VSCODE_PORTABLE']; |
| 445 | if (vscodePortable) { |
| 446 | return path.join(vscodePortable, 'argv.json'); |
| 447 | } |
| 448 | |
| 449 | let dataFolderName = product.dataFolderName; |
| 450 | if (process.env['VSCODE_DEV']) { |
| 451 | dataFolderName = `${dataFolderName}-dev`; |
| 452 | } |
| 453 | |
| 454 | return path.join(os.homedir(), dataFolderName!, 'argv.json'); |
| 455 | } |
| 456 | |
| 457 | function configureCrashReporter(): void { |
| 458 | let crashReporterDirectory = args['crash-reporter-directory']; |
no test coverage detected
searching dependent graphs…