fix(tauri-build): skip validating tray-icon feature flag (#7610)

This commit is contained in:
Lucas Fernandes Nogueira 2023-08-14 07:24:13 -07:00 committed by GitHub
parent 28382fdf9e
commit 560b34dd2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
"tauri-build": patch:bug
---
Skip validation of the `tray-icon` feature flag.

View File

@ -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>>(),
},