From 7ff56b839b551346d1852fed584cf941b178c25d Mon Sep 17 00:00:00 2001 From: Guilherme Oenning Date: Sun, 15 Sep 2024 09:25:15 +0100 Subject: [PATCH 1/2] use appimage settings instead of deb --- crates/tauri-bundler/src/bundle/linux/appimage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tauri-bundler/src/bundle/linux/appimage.rs b/crates/tauri-bundler/src/bundle/linux/appimage.rs index f4e2881f9ed2..f36a79981a35 100644 --- a/crates/tauri-bundler/src/bundle/linux/appimage.rs +++ b/crates/tauri-bundler/src/bundle/linux/appimage.rs @@ -35,7 +35,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result> { // 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"); From 99cf06fac44823de543a7a1e08baeca1b4990772 Mon Sep 17 00:00:00 2001 From: goenning Date: Sun, 15 Sep 2024 09:30:13 +0100 Subject: [PATCH 2/2] add changeset --- .changes/bundler-appimage-files.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/bundler-appimage-files.md diff --git a/.changes/bundler-appimage-files.md b/.changes/bundler-appimage-files.md new file mode 100644 index 000000000000..895b3d506e44 --- /dev/null +++ b/.changes/bundler-appimage-files.md @@ -0,0 +1,5 @@ +--- +"tauri-bundler": patch:bug +--- + +Use appimage files instead of debian files when building appimage \ No newline at end of file