3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/audio/yabridgectl/remove-dependency-verification.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
697 B
Diff
Raw Normal View History

2022-07-06 14:56:07 +01:00
diff --git a/tools/yabridgectl/src/actions.rs b/tools/yabridgectl/src/actions.rs
2022-07-11 16:43:35 +01:00
index 9ecdb140..061a8ff3 100644
2022-07-06 14:56:07 +01:00
--- a/tools/yabridgectl/src/actions.rs
+++ b/tools/yabridgectl/src/actions.rs
2022-07-11 16:43:35 +01:00
@@ -712,13 +712,6 @@ pub fn do_sync(config: &mut Config, options: &SyncOptions) -> Result<()> {
2022-07-06 14:56:07 +01:00
// be the case if we get to this point though.
verify_path_setup(config)?;
- // This check is only performed once per combination of Wine and yabridge versions
- verify_wine_setup(config)?;
-
- // Yabridge uses notify-send to relay important information when something's very wrong, so
- // we'll check whether this is installed
- verify_external_dependencies()?;
-
Ok(())
}