We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a99601e commit 06d4a4eCopy full SHA for 06d4a4e
.changes/linuxdeploy-extract.md
@@ -0,0 +1,5 @@
1
+---
2
+tauri-bundler: patch:bug
3
4
+
5
+Set `APPIMAGE_EXTRACT_AND_RUN` on top of using the `--appimage-extra-and-run` cli arg for linuxdeploy.
crates/tauri-bundler/src/bundle/linux/appimage.rs
@@ -190,6 +190,8 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
190
let mut cmd = Command::new(linuxdeploy_path);
191
cmd.env("OUTPUT", &appimage_path);
192
cmd.env("ARCH", tools_arch);
193
+ // Looks like the cli arg isn't enough for the updated AppImage output-plugin.
194
+ cmd.env("APPIMAGE_EXTRACT_AND_RUN", "1");
195
cmd.args([
196
"--appimage-extract-and-run",
197
"--verbosity",
0 commit comments