Skip to content

Commit

Permalink
server: fix bug where paths were not splatted (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
mishaschwartz committed Jan 9, 2023
1 parent 033f374 commit 3be57a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/autotest_server/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def extract_zip_stream(zip_byte_stream: bytes, destination: str) -> None:
with zipfile.ZipFile(BytesIO(zip_byte_stream)) as zf:
for fname in zf.namelist():
*dpaths, bname = fname.split(os.sep)
dest = os.path.join(destination, dpaths)
dest = os.path.join(destination, *dpaths)
filename = os.path.join(dest, bname)
if filename.endswith("/"):
os.makedirs(filename, exist_ok=True)
Expand Down

0 comments on commit 3be57a4

Please sign in to comment.