From 8094b69d53fc16351836668117214da66ac596f3 Mon Sep 17 00:00:00 2001 From: Kevin Phoenix Date: Mon, 12 Feb 2024 12:15:36 -0700 Subject: [PATCH] Change busybox env path --- python/binharness/common/busybox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/binharness/common/busybox.py b/python/binharness/common/busybox.py index f4193fa..a16ce87 100644 --- a/python/binharness/common/busybox.py +++ b/python/binharness/common/busybox.py @@ -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: