Skip to content
Snippets Groups Projects
Commit e45733e9 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

tarball: Run unzip in quiet mode

Nothing should be printed to standard output when calling
swh.core.tarball.uncompress.
parent 5c81a6c2
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ def _unpack_zip(zippath: str, extract_dir: str) -> str:
"""
try:
run(["unzip", "-d", extract_dir, zippath], check=True)
run(["unzip", "-q", "-d", extract_dir, zippath], check=True)
return extract_dir
except Exception as e:
raise shutil.ReadError(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment