Skip to content

Commit 560b34d

Browse files
authored
fix(tauri-build): skip validating tray-icon feature flag (#7610)
1 parent 28382fd commit 560b34d

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-build": patch:bug
3+
---
4+
5+
Skip validation of the `tray-icon` feature flag.

core/tauri-build/src/allowlist.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ pub fn check(config: &Config, manifest: &mut Manifest) -> Result<()> {
5353
.tauri
5454
.features()
5555
.into_iter()
56+
.filter(|f| f != &"tray-icon")
5657
.map(|f| f.to_string())
5758
.collect::<Vec<String>>(),
5859
},

0 commit comments

Comments
 (0)