Fix cli compile error due to tauri bundler adding fields (#1416)

New fields for debian settings:

- desktop_template

For NSIS settings:

- custom_language_files
- template
This commit is contained in:
fanyang 2023-09-02 19:44:31 +08:00 committed by GitHub
parent 392c744ad1
commit 4511b37da8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -381,6 +381,7 @@ impl From<DebianSettings> for tauri_bundler::DebianSettings {
tauri_bundler::DebianSettings {
depends: val.depends,
files: val.files,
desktop_template: None,
}
}
}
@ -522,6 +523,8 @@ impl From<NsisSettings> for tauri_bundler::NsisSettings {
install_mode: val.install_mode.into(),
languages: val.languages,
display_language_selector: val.display_language_selector,
custom_language_files: None,
template: None,
}
}
}