Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sighthouse-client/src/sighthouse/client/install_ida.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!")
Expand Down