Skip to content

Commit

Permalink
fix: path not being inherited on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
BrewingWeasel committed Aug 17, 2024
1 parent 1e6d891 commit 0ce356b
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
45 changes: 45 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ log = "0.4.22"
spyglys = "0.2.2"
url = "2.5.2"
rmp-serde = "1.3.0"
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }

[dependencies.simple_logger]
version = "5.0.0"
Expand Down
1 change: 1 addition & 0 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ fn main() {
.env()
.init()
.unwrap();
let _ = fix_path_env::fix();
tauri::Builder::default()
.manage(KalbaState(Default::default()))
.invoke_handler(tauri::generate_handler![
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "kalba",
"version": "0.3.0-alpha"
"version": "0.3.0"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit 0ce356b

Please sign in to comment.