Island: Fix WindowsPath when running monkey from island

This commit is contained in:
Ilija Lazoroski 2022-03-15 15:17:17 +01:00
parent 264fa440c6
commit 241641ba80
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class LocalMonkeyRunService:
ip = local_ip_addresses()[0]
port = ISLAND_PORT
args = [dest_path, "m0nk3y", "-s", f"{ip}:{port}"]
args = [str(dest_path), "m0nk3y", "-s", f"{ip}:{port}"]
subprocess.Popen(args, cwd=LocalMonkeyRunService.DATA_DIR)
except Exception as exc:
logger.error("popen failed", exc_info=True)