Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/app/utils/todds/wrapper.py b/app/utils/todds/wrapper.py 2index a239fe0..3375b70 100644 3--- a/app/utils/todds/wrapper.py 4+++ b/app/utils/todds/wrapper.py 5@@ -66,11 +66,7 @@ class ToddsInterface: 6 :param todds_arguments: list of todds args to be passed to the todds executable 7 """ 8 9- if self.system == "Windows": 10- todds_executable = "todds.exe" 11- else: 12- todds_executable = "todds" 13- todds_exe_path = str(AppInfo().application_folder / "todds" / todds_executable) 14+ todds_exe_path = "@todds@/bin/todds" 15 logger.info("Checking for todds...") 16 if os.path.exists(todds_exe_path): 17 logger.debug(f"Found todds executable at: {todds_exe_path}")