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 src/pyrenode3/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def from_net_build(cls, path: "Union[str, pathlib.Path]"):
@classmethod
def from_net_bin(cls, path: "Union[str, pathlib.Path]"):
"""Load Renode from binary."""
renode_bin = pathlib.Path(path)
renode_bin = pathlib.Path(path).resolve()
renode_dir = renode_bin.parent

# As a side effect, executing the binary causes the embedded dlls to be extracted to:
Expand Down