Skip to content

Commit

Permalink
watcher - use type property for crash reporter location
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Nov 3, 2021
1 parent 3ff2cd9 commit bfa488d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -322,7 +322,7 @@ class SharedProcessWebWorker extends Disposable {
// working directory. Setting the env BREAKPAD_DUMP_LOCATION will force electron to create the file in that location,
// For https://github.com/microsoft/vscode/issues/105743
const extHostCrashDirectory = this.environmentService.args['crash-reporter-directory'] || this.environmentService.userDataPath;
sharedProcessWorkerEnvironment.env.BREAKPAD_DUMP_LOCATION = join(extHostCrashDirectory, `Parcel Watcher Crash Reports`);
sharedProcessWorkerEnvironment.env.BREAKPAD_DUMP_LOCATION = join(extHostCrashDirectory, this.type);
sharedProcessWorkerEnvironment.env.VSCODE_CRASH_REPORTER_START_OPTIONS = JSON.stringify(crashReporterStartOptions);
}

Expand Down

0 comments on commit bfa488d

Please sign in to comment.