Skip to content

Commit 2f3e302

Browse files
authored
Fix path for linux lib executables (#3185)
1 parent 9e76861 commit 2f3e302

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src-tauri/src/resources.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ pub fn start_application(
3434
args: Option<Vec<String>>,
3535
new_thread: bool,
3636
) -> Result<(), Box<dyn Error>> {
37-
// If package installed and linux, we need to use /usr/lib/system-bridge/{path}
38-
let linux_path = format!("/usr/lib/system-bridge/{}", path);
37+
// If package installed and linux, we need to use /usr/lib/systembridge/{path}
38+
let linux_path = format!("/usr/lib/systembridge/{}", path);
3939
let application_path_string: String =
4040
if cfg!(target_os = "linux") && std::path::Path::new(&linux_path).exists() {
4141
linux_path

0 commit comments

Comments
 (0)