Skip to content

Commit

Permalink
fix: missing depends for rpm package (#10015)
Browse files Browse the repository at this point in the history
* fix: missing depends for rpm package

* chore: add changes
  • Loading branch information
Pylogmon authored Jun 12, 2024
1 parent 09152d8 commit 674acca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changes/fix-missing-depends.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"tauri-cli": "patch:bug"
"@tauri-apps/cli": "patch:bug"
---

Add missing dependency `libayatana-appindicator3.so.1` for rpm package.
1 change: 1 addition & 0 deletions tooling/cli/src/interface/rust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1074,6 +1074,7 @@ fn tauri_config_to_bundle_settings(
let tray = std::env::var("TAURI_TRAY").unwrap_or_else(|_| "ayatana".to_string());
if tray == "ayatana" {
depends_deb.push("libayatana-appindicator3-1".into());
libs.push("libayatana-appindicator3.so.1".into());
} else {
depends_deb.push("libappindicator3-1".into());
libs.push("libappindicator3.so.1".into());
Expand Down

0 comments on commit 674acca

Please sign in to comment.