Commit 84103e35 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix eid-xor path for Mac

parent 0264ccd3
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -409,8 +409,10 @@ class DecoderFrontend:

            if system == "Windows":
                eid_path = "./scripts/tools/Windows/eid-xor.exe"
            elif system in ["Darwin", "Linux"]:
            elif system == "Linux":
                eid_path = "./scripts/tools/Linux/eid-xor"
            elif system == "Darwin":
                eid_path = "./scripts/tools/Darwin/eid-xor"
            else:
                raise ValueError(f'Wrong system "{system}"!')