summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2025-08-22 15:07:13 +0200
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-08-26 11:09:12 +0200
commit58f3303430d0e055aab0e3427cb6d9bf6f704adf (patch)
treec0bd69c4b149eeda043932f9a98f2ea61080cf8e
parent5d62c3e3921c3d0f99f589fb89d6c5f5825a7002 (diff)
downloadmullvadvpn-58f3303430d0e055aab0e3427cb6d9bf6f704adf.tar.xz
mullvadvpn-58f3303430d0e055aab0e3427cb6d9bf6f704adf.zip
Fix unintentional rename of desktop file
-rw-r--r--desktop/packages/mullvad-vpn/tasks/distribution.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/tasks/distribution.js b/desktop/packages/mullvad-vpn/tasks/distribution.js
index b33304ad56..fe52ea4c24 100644
--- a/desktop/packages/mullvad-vpn/tasks/distribution.js
+++ b/desktop/packages/mullvad-vpn/tasks/distribution.js
@@ -189,6 +189,7 @@ function newConfig() {
arch: getLinuxTargetArch(),
},
],
+ executableName: 'mullvad-vpn',
artifactName: 'MullvadVPN-${version}_${arch}.${ext}',
category: 'Network',
icon: distAssets('icon.icns'),
@@ -447,7 +448,7 @@ function packLinux() {
afterPack: async (context) => {
config.afterPack?.(context);
- const sourceExecutable = path.join(context.appOutDir, 'Mullvad VPN');
+ const sourceExecutable = path.join(context.appOutDir, 'mullvad-vpn');
const targetExecutable = path.join(context.appOutDir, 'mullvad-gui');
const launcherScript = path.join(context.appOutDir, 'mullvad-gui-launcher.sh');