Browse Source

fix: deb installation error (#1844)

aida.t 4 years ago
parent
commit
e08065d7fe
2 changed files with 6 additions and 1 deletions
  1. 5 0
      .changes/cli.rs-libwebkit2gtk-4.0-37.md
  2. 1 1
      tooling/cli.rs/src/build/rust.rs

+ 5 - 0
.changes/cli.rs-libwebkit2gtk-4.0-37.md

@@ -0,0 +1,5 @@
+---
+"cli.rs": patch
+---
+
+Fixes the libwebkit2gtk package name.

+ 1 - 1
tooling/cli.rs/src/build/rust.rs

@@ -380,7 +380,7 @@ fn tauri_config_to_bundle_settings(
       depends.push("libappindicator3-1".to_string());
     }
 
-    depends.push("libwebkit2gtk-4.0".to_string());
+    depends.push("libwebkit2gtk-4.0-37".to_string());
     depends.push("libgtk-3-0".to_string());
     if manifest.features.contains(&"menu".into()) || system_tray_config.is_some() {
       depends.push("libgtksourceview-3.0-1".to_string());