Skip to content

Commit

Permalink
Change busybox env path (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin authored Feb 12, 2024
1 parent f7ca47e commit bdc8675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/binharness/common/busybox.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self: BusyboxInjection) -> None:

def install(self: BusyboxInjection, environment: Environment) -> None:
"""Install the injection into an environment."""
self.env_path = environment.get_tempdir()
self.env_path = environment.get_tempdir() / "busybox"
try:
super().install(environment)
except OSError as ex:
Expand Down

0 comments on commit bdc8675

Please sign in to comment.