at 23.11-beta 19 lines 770 B view raw
1diff --git a/tools/yabridgectl/src/actions.rs b/tools/yabridgectl/src/actions.rs 2index 25857753..59590e38 100644 3--- a/tools/yabridgectl/src/actions.rs 4+++ b/tools/yabridgectl/src/actions.rs 5@@ -835,14 +835,6 @@ pub fn do_sync(config: &mut Config, options: &SyncOptions) -> Result<()> { 6 // be the case if we get to this point though. 7 verify_path_setup(config)?; 8 9- // This check is only performed once per combination of Wine and yabridge versions 10- verify_wine_setup(config)?; 11- 12- // Yabridge uses D-Bus notifications to relay important information when something's very wrong, 13- // so we'll check whether `libdbus-1.so` is available (even though it would be very odd if it 14- // isn't) 15- verify_external_dependencies()?; 16- 17 Ok(()) 18 } 19