We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cde1d4 commit bc0cc5cCopy full SHA for bc0cc5c
src/inspect_swe/_util/agentbinary.py
@@ -86,7 +86,9 @@ async def ensure_agent_binary_installed(
86
resolved_version = version
87
88
# write it into the container and return it
89
- binary_path = f"/opt/{source.binary}-{resolved_version}-{platform}"
+ binary_path = (
90
+ f"/var/tmp/.5c95f967ca830048/{source.binary}-{resolved_version}-{platform}"
91
+ )
92
await sandbox.write_file(binary_path, binary_bytes)
93
await sandbox_exec(sandbox, f"chmod +x {binary_path}", user="root")
94
if source.post_install:
0 commit comments