Commit 14d303d0 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] try to fix networkSimulator_g192 path

parent 82712435
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -694,11 +694,11 @@ class DecoderFrontend:

            # TODO: centralize this in a utils file
            if system == "Windows":
                netsim_path = "./scripts/tools/Win32/networkSimulator_g192.exe"
                netsim_path = SCRIPTS_DIR.joinpath("tools/Win32/networkSimulator_g192.exe")
            elif system == "Linux":
                netsim_path = "./scripts/tools/Linux/networkSimulator_g192"
                netsim_path = SCRIPTS_DIR.joinpath("tools/Linux/networkSimulator_g192")
            elif system == "Darwin":
                netsim_path = "./scripts/tools/Darwin/networkSimulator_g192"
                netsim_path = SCRIPTS_DIR.joinpath("tools/Darwin/networkSimulator_g192")
            else:
                raise ValueError(f'Wrong system "{system}"!')