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()); }