fix(core): Compile error when bundle.license is set (#8774)

* fix(core): Compile error when bundle.license is set

* wrong package
This commit is contained in:
Fabian-Lars 2024-02-05 14:08:32 +01:00 committed by GitHub
parent baca704d4b
commit ae0fe47c4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"tauri-utils": patch:bug
---
Fix compile error when `tauri.conf.json` had `bundle > license` set.

View File

@ -2300,7 +2300,7 @@ mod build {
let long_description = quote!(None);
let external_bin = opt_vec_lit(self.external_bin.as_ref(), str_lit);
let windows = &self.windows;
let license = opt_lit(self.license.as_ref());
let license = opt_str_lit(self.license.as_ref());
let license_file = opt_lit(self.license_file.as_ref().map(path_buf_lit).as_ref());
let linux = quote!(Default::default());
let macos = quote!(Default::default());