Commit 2d4e5268 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'fix_batch_comp_audio_check' into 'main'

[scripts] Fix check for MLD in batch_comp_audio.py

See merge request !1828
parents dfac799d 47704fbe
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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)