From 77c0701695d329a5e982d724ae407ed1bd575b82 Mon Sep 17 00:00:00 2001 From: ospab Date: Mon, 25 May 2026 23:16:24 +0300 Subject: [PATCH] gui: fix helper lookup path for dev workspace --- ostp-gui/src-tauri/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ostp-gui/src-tauri/src/lib.rs b/ostp-gui/src-tauri/src/lib.rs index 6423240..eb2dc00 100644 --- a/ostp-gui/src-tauri/src/lib.rs +++ b/ostp-gui/src-tauri/src/lib.rs @@ -461,6 +461,8 @@ fn find_helper_exe() -> Option { cwd.join("target").join("release").join("ostp-tun-helper.exe"), cwd.join("..").join("target").join("debug").join("ostp-tun-helper.exe"), cwd.join("..").join("target").join("release").join("ostp-tun-helper.exe"), + cwd.join("..").join("..").join("target").join("debug").join("ostp-tun-helper.exe"), + cwd.join("..").join("..").join("target").join("release").join("ostp-tun-helper.exe"), ]; for path in &candidates { if path.exists() { return Some(path.clone()); }