summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2019-10-09 16:23:16 +0200
committerLinus Färnstrand <linus@mullvad.net>2019-10-09 16:50:06 +0200
commitd7fff16dc09089d4f45ff48288872ab4e63fde88 (patch)
tree159524fd26d0469d7fe3652753f49b7a6a7fbb10 /gui/src
parent76f0d0e834b3bd5f8f1db5625233dd0fcffc6c03 (diff)
downloadmullvadvpn-d7fff16dc09089d4f45ff48288872ab4e63fde88.tar.xz
mullvadvpn-d7fff16dc09089d4f45ff48288872ab4e63fde88.zip
Adapt to problem-report binary being called mullvad-problem-report
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/main/index.ts4
1 files changed, 2 insertions, 2 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) => {