Browse Source

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

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

* wrong package
Fabian-Lars 1 year ago
parent
commit
ae0fe47c4c
2 changed files with 6 additions and 1 deletions
  1. 5 0
      .changes/fix-tauri-build-license-field.md
  2. 1 1
      core/tauri-utils/src/config.rs

+ 5 - 0
.changes/fix-tauri-build-license-field.md

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

+ 1 - 1
core/tauri-utils/src/config.rs

@@ -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());