summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2025-03-27 21:47:55 +0100
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-28 10:33:24 +0200
commit26b6b2567dbb99bb68add7751c2627397d8fa31b (patch)
tree308f2cd4fcf0eee2d5b2cbc703bae4ed09f41ad3
parent1dd385984aef223280633a652426138fdeba343f (diff)
downloadmullvadvpn-26b6b2567dbb99bb68add7751c2627397d8fa31b.tar.xz
mullvadvpn-26b6b2567dbb99bb68add7751c2627397d8fa31b.zip
Make bin_path public
-rw-r--r--mullvad-update/src/client/app.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-update/src/client/app.rs b/mullvad-update/src/client/app.rs
index 90dc4314e2..c43326fb88 100644
--- a/mullvad-update/src/client/app.rs
+++ b/mullvad-update/src/client/app.rs
@@ -134,7 +134,7 @@ impl<AppProgress: ProgressUpdater> AppDownloader for HttpAppDownloader<AppProgre
}
impl<AppProgress> HttpAppDownloader<AppProgress> {
- fn bin_path(&self) -> PathBuf {
+ pub fn bin_path(&self) -> PathBuf {
#[cfg(windows)]
let bin_filename = format!("mullvad-{}.exe", self.params.app_version);