Skip to content

Commit 44d54a0

Browse files
authored
fix(bundler): Use appimage files instead of debian files when building appimage (#11005)
* use appimage settings instead of deb * add changeset
1 parent 6c5340f commit 44d54a0

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.changes/bundler-appimage-files.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-bundler": patch:bug
3+
---
4+
5+
Use appimage files instead of debian files when building appimage

crates/tauri-bundler/src/bundle/linux/appimage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
3535
// generate deb_folder structure
3636
let (data_dir, icons) = debian::generate_data(settings, &package_dir)
3737
.with_context(|| "Failed to build data folders and files")?;
38-
common::copy_custom_files(&settings.deb().files, &data_dir)
38+
common::copy_custom_files(&settings.appimage().files, &data_dir)
3939
.with_context(|| "Failed to copy custom files")?;
4040

4141
let output_path = settings.project_out_directory().join("bundle/appimage");

0 commit comments

Comments
 (0)