From ec74627b0ca0e6f899f816a67a6884b5be953cff Mon Sep 17 00:00:00 2001 From: Sakii <13037299+SakiiCode@users.noreply.github.com> Date: Tue, 12 Mar 2024 16:36:44 +0100 Subject: [PATCH] Fix missing action on path-auto --- tools/yabridgectl/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/yabridgectl/src/main.rs b/tools/yabridgectl/src/main.rs index e66ef0da..6897260e 100644 --- a/tools/yabridgectl/src/main.rs +++ b/tools/yabridgectl/src/main.rs @@ -148,7 +148,8 @@ fn main() -> Result<()> { "Automatically locate yabridge's files. This can be used after \ manually setting a path with the '--path' option to revert back to \ the default auto detection behaviour.", - ), + ) + .action(ArgAction::SetTrue), ) .arg( Arg::new("vst2_location")