Skip to content

Commit

Permalink
fix(bundler): Use appimage files instead of debian files when buildin…
Browse files Browse the repository at this point in the history
…g appimage (#11005)

* use appimage settings instead of deb

* add changeset
  • Loading branch information
goenning authored Sep 15, 2024
1 parent 6c5340f commit 44d54a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/bundler-appimage-files.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri-bundler": patch:bug
---

Use appimage files instead of debian files when building appimage
2 changes: 1 addition & 1 deletion crates/tauri-bundler/src/bundle/linux/appimage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
// generate deb_folder structure
let (data_dir, icons) = debian::generate_data(settings, &package_dir)
.with_context(|| "Failed to build data folders and files")?;
common::copy_custom_files(&settings.deb().files, &data_dir)
common::copy_custom_files(&settings.appimage().files, &data_dir)
.with_context(|| "Failed to copy custom files")?;

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

0 comments on commit 44d54a0

Please sign in to comment.