diff --git a/.changes/bundler-injectedbundle.md b/.changes/bundler-injectedbundle.md new file mode 100644 index 000000000..9f2305e85 --- /dev/null +++ b/.changes/bundler-injectedbundle.md @@ -0,0 +1,5 @@ +--- +tauri-bundler: 'patch:bug' +--- + +Fixed an issue that caused the compiled AppImage to miss webkitgtk's internal `libwebkit2gtkinjectedbundle.so` file. diff --git a/crates/tauri-bundler/src/bundle/linux/appimage.rs b/crates/tauri-bundler/src/bundle/linux/appimage.rs index 87aa238eb..3d039605d 100644 --- a/crates/tauri-bundler/src/bundle/linux/appimage.rs +++ b/crates/tauri-bundler/src/bundle/linux/appimage.rs @@ -141,7 +141,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result> { for file in [ "WebKitNetworkProcess", "WebKitWebProcess", - "libwebkit2gtkinjectedbundle.so", + "injected-bundle/libwebkit2gtkinjectedbundle.so", ] { for source in search_dirs.map(PathBuf::from) { // TODO: Check if it's the same dir name on all systems