Skip to content

Commit

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

* chore: add changes
  • Loading branch information
Pylogmon committed Jun 12, 2024
1 parent b9e11a8 commit f56cdc9
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 @@ -1213,6 +1213,7 @@ fn tauri_config_to_bundle_settings(
match tray_kind {
pkgconfig_utils::TrayKind::Ayatana => {
depends_deb.push("libayatana-appindicator3-1".into());
libs.push("libayatana-appindicator3.so.1".into());
}
pkgconfig_utils::TrayKind::Libappindicator => {
depends_deb.push("libappindicator3-1".into());
Expand Down

0 comments on commit f56cdc9

Please sign in to comment.