Skip to content

Commit

Permalink
fix(tauri-build): skip validating tray-icon feature flag (#7610)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Aug 14, 2023
1 parent 28382fd commit 560b34d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/fix-tray-icon-validation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri-build": patch:bug
---

Skip validation of the `tray-icon` feature flag.
1 change: 1 addition & 0 deletions core/tauri-build/src/allowlist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ pub fn check(config: &Config, manifest: &mut Manifest) -> Result<()> {
.tauri
.features()
.into_iter()
.filter(|f| f != &"tray-icon")
.map(|f| f.to_string())
.collect::<Vec<String>>(),
},
Expand Down

0 comments on commit 560b34d

Please sign in to comment.