Skip to content

Commit

Permalink
Fix cli compile error due to tauri bundler adding fields (#1416)
Browse files Browse the repository at this point in the history
New fields for debian settings:

- desktop_template

For NSIS settings:

- custom_language_files
- template
  • Loading branch information
fanyang89 authored Sep 2, 2023
1 parent 392c744 commit 4511b37
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/cli/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ impl From<DebianSettings> for tauri_bundler::DebianSettings {
tauri_bundler::DebianSettings {
depends: val.depends,
files: val.files,
desktop_template: None,
}
}
}
Expand Down Expand Up @@ -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,
}
}
}
Expand Down

0 comments on commit 4511b37

Please sign in to comment.