mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 20:48:52 +03:00
fix(tauri-build): skip validating tray-icon feature flag (#7610)
This commit is contained in:
parent
28382fdf9e
commit
560b34dd2a
5
.changes/fix-tray-icon-validation.md
Normal file
5
.changes/fix-tray-icon-validation.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"tauri-build": patch:bug
|
||||
---
|
||||
|
||||
Skip validation of the `tray-icon` feature flag.
|
@ -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>>(),
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user