Skip to content

Commit fbe7c9e

Browse files
authored
fix(bundler): fix injectedbundle search path (#12466)
1 parent b8eb288 commit fbe7c9e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changes/bundler-injectedbundle.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+
Fixed an issue that caused the compiled AppImage to miss webkitgtk's internal `libwebkit2gtkinjectedbundle.so` file.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
141141
for file in [
142142
"WebKitNetworkProcess",
143143
"WebKitWebProcess",
144-
"libwebkit2gtkinjectedbundle.so",
144+
"injected-bundle/libwebkit2gtkinjectedbundle.so",
145145
] {
146146
for source in search_dirs.map(PathBuf::from) {
147147
// TODO: Check if it's the same dir name on all systems

0 commit comments

Comments
 (0)