Skip to content

Commit bfa488d

Browse files
committed
watcher - use type property for crash reporter location
1 parent 3ff2cd9 commit bfa488d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/sharedProcess/electron-browser/sharedProcessWorkerService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ class SharedProcessWebWorker extends Disposable {
322322
// working directory. Setting the env BREAKPAD_DUMP_LOCATION will force electron to create the file in that location,
323323
// For https://github.com/microsoft/vscode/issues/105743
324324
const extHostCrashDirectory = this.environmentService.args['crash-reporter-directory'] || this.environmentService.userDataPath;
325-
sharedProcessWorkerEnvironment.env.BREAKPAD_DUMP_LOCATION = join(extHostCrashDirectory, `Parcel Watcher Crash Reports`);
325+
sharedProcessWorkerEnvironment.env.BREAKPAD_DUMP_LOCATION = join(extHostCrashDirectory, this.type);
326326
sharedProcessWorkerEnvironment.env.VSCODE_CRASH_REPORTER_START_OPTIONS = JSON.stringify(crashReporterStartOptions);
327327
}
328328

0 commit comments

Comments
 (0)