summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2019-10-09 23:02:55 +0200
committerLinus Färnstrand <linus@mullvad.net>2019-10-09 23:02:55 +0200
commit38bd57b74ccf291d53243d1f99ef98989d03dec4 (patch)
tree9a99ca315db89829b4833dff5ad54de7f6c0f5e2 /gui/src
parent6bb0afe27f8283fda1a3716a778a25b26781b198 (diff)
parent0275ade6a7f984fadc51af281b4d9bcb47a70c07 (diff)
downloadmullvadvpn-38bd57b74ccf291d53243d1f99ef98989d03dec4.tar.xz
mullvadvpn-38bd57b74ccf291d53243d1f99ef98989d03dec4.zip
Merge branch 'rename-problem-report-binary'
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) => {