From 47704fbe65ba9c8cab72826625d6df368dd02903 Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Fri, 18 Oct 2024 16:11:06 +0200 Subject: [PATCH] [fix] check for MLD binary is redundant, remove it --- scripts/batch_comp_audio.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/batch_comp_audio.py b/scripts/batch_comp_audio.py index 56a6b7d502..7e488fcfbe 100755 --- a/scripts/batch_comp_audio.py +++ b/scripts/batch_comp_audio.py @@ -56,7 +56,8 @@ DIFF_STR = { def main(args): tool = args.tool - if tool != "pyaudio3dtools" and shutil.which(tool) is None: + # check for MLD will be done by the compare() function + if tool == "CompAudio" and shutil.which(tool) is None: print(f"{tool} not in PATH - abort.") sys.exit(-1) -- GitLab