fix: tauri path env (#5233)

This commit is contained in:
Louis 2025-06-10 18:31:21 +07:00 committed by GitHub
parent 51a321219d
commit 92a52dfa08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,7 @@ sysinfo = "0.34.2"
ash = "0.38.0"
nvml-wrapper = "0.10.0"
tauri-plugin-deep-link = "2"
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
[target.'cfg(windows)'.dependencies]
libloading = "0.8.7"

View File

@ -2,5 +2,6 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
let _ = fix_path_env::fix();
app_lib::run();
}