diff --git a/pungi/runroot.py b/pungi/runroot.py index 4f08ce75..af65a2e2 100644 --- a/pungi/runroot.py +++ b/pungi/runroot.py @@ -459,4 +459,4 @@ def download_and_extract_archive(compose, task_id, fname, destination): local_path = _download_archive(task_id, fname, archive_url, tmp_dir) _extract_archive(task_id, fname, local_path, destination) finally: - shutil.rmtree(tmp_dir) + shutil.rmtree(tmp_dir, ignore_errors=True)