From a875d30ab6be1e63e6229a99ccccd34896551a86 Mon Sep 17 00:00:00 2001 From: Alol Date: Wed, 1 Jul 2026 14:53:39 +0200 Subject: [PATCH] fix: install_ida.py installs client in wrong directory `install_ida.py` used to install SightHouseClientIDA.py in the wrong directory (`$IDA_DIR` instead of `$IDA_DIR/plugins/`) --- sighthouse-client/src/sighthouse/client/install_ida.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sighthouse-client/src/sighthouse/client/install_ida.py b/sighthouse-client/src/sighthouse/client/install_ida.py index 15f60bf..9cbd522 100644 --- a/sighthouse-client/src/sighthouse/client/install_ida.py +++ b/sighthouse-client/src/sighthouse/client/install_ida.py @@ -39,7 +39,7 @@ def copy_client_script_to_idadir(idadir: Path) -> None: # Copy script with open(str(client_script), "r") as fpin: - with open(str(idadir / "SightHouseClientIDA.py"), "w") as fpout: + with open(str(plugin_dir / "SightHouseClientIDA.py"), "w") as fpout: fpout.write(fpin.read()) print("Sighthouse client script installed!")