summaryrefslogtreecommitdiffhomepage
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/src/main/index.ts4
-rw-r--r--gui/tasks/distribution.js6
2 files changed, 5 insertions, 5 deletions
diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts
index 6b91926533..cba1caac5a 100644
--- a/gui/src/main/index.ts
+++ b/gui/src/main/index.ts
@@ -996,7 +996,7 @@ class ApplicationMain {
'collect-logs',
(event: Electron.IpcMainEvent, requestId: string, toRedact: string[]) => {
const reportPath = path.join(app.getPath('temp'), uuid.v4() + '.log');
- const executable = resolveBin('problem-report');
+ const executable = resolveBin('mullvad-problem-report');
const args = ['collect', '--output', reportPath];
if (toRedact.length > 0) {
args.push('--redact', ...toRedact);
@@ -1035,7 +1035,7 @@ class ApplicationMain {
message: string,
savedReport: string,
) => {
- const executable = resolveBin('problem-report');
+ const executable = resolveBin('mullvad-problem-report');
const args = ['send', '--email', email, '--message', message, '--report', savedReport];
execFile(executable, args, { windowsHide: true }, (error, stdout, stderr) => {
diff --git a/gui/tasks/distribution.js b/gui/tasks/distribution.js
index 5aef4643a6..775dbd526d 100644
--- a/gui/tasks/distribution.js
+++ b/gui/tasks/distribution.js
@@ -46,7 +46,7 @@ const config = {
},
extraResources: [
{ from: distAssets('mullvad'), to: '.' },
- { from: distAssets('problem-report'), to: '.' },
+ { from: distAssets('mullvad-problem-report'), to: '.' },
{ from: distAssets('mullvad-daemon'), to: '.' },
{ from: distAssets('libtalpid_openvpn_plugin.dylib'), to: '.' },
{ from: distAssets('binaries/x86_64-apple-darwin/openvpn'), to: '.' },
@@ -84,7 +84,7 @@ const config = {
signDlls: true,
extraResources: [
{ from: distAssets('mullvad.exe'), to: '.' },
- { from: distAssets('problem-report.exe'), to: '.' },
+ { from: distAssets('mullvad-problem-report.exe'), to: '.' },
{ from: distAssets('mullvad-daemon.exe'), to: '.' },
{ from: distAssets('talpid_openvpn_plugin.dll'), to: '.' },
{ from: root('windows/winfw/bin/x64-Release/winfw.dll'), to: '.' },
@@ -102,7 +102,7 @@ const config = {
category: 'Network',
extraFiles: [{ from: distAssets('linux/mullvad-gui-launcher.sh'), to: '.' }],
extraResources: [
- { from: distAssets('problem-report'), to: '.' },
+ { from: distAssets('mullvad-problem-report'), to: '.' },
{ from: distAssets('mullvad-daemon'), to: '.' },
{ from: distAssets('libtalpid_openvpn_plugin.so'), to: '.' },
{ from: distAssets('binaries/x86_64-unknown-linux-gnu/openvpn'), to: '.' },