We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1192d21 commit 46b7610Copy full SHA for 46b7610
src/filesystem.py
@@ -22,7 +22,7 @@ def extract_index(index_file: str):
22
logging.debug(f"Creating temp directory: {config.TEMP_DIR}")
23
os.makedirs(config.TEMP_DIR, exist_ok=True)
24
25
- install_command = f"lbzip2 -d -c {index_file} | tar x -C {config.TEMP_DIR}"
+ install_command = f"lbzip2 -d -c {index_file} | tar x -o -C {config.TEMP_DIR}"
26
logging.debug(f"Extraction command: {install_command}")
27
28
try:
0 commit comments