ulwgl_dl_util: print on extraction complete

This commit is contained in:
R1kaB3rN 2024-02-16 11:38:35 -08:00
parent 4691e26f23
commit f24dbc8591
No known key found for this signature in database

View File

@ -146,6 +146,7 @@ def _extract_dir(proton: Path, steam_compat: Path) -> None:
with tar_open(proton.as_posix(), "r:gz") as tar:
print(f"Extracting {proton} -> {steam_compat.as_posix()} ...")
tar.extractall(path=steam_compat.as_posix())
print("Completed.")
def _cleanup(tarball, proton, cache, steam_compat) -> None: