From fc304b2a97f840cada7858d9a511fb034e897f43 Mon Sep 17 00:00:00 2001 From: debianpepper Date: Tue, 21 May 2024 15:19:39 +0900 Subject: [PATCH] Updates Signed-off-by: debianpepper --- iso_configs/pylibraries/pepperpy/hooks.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/iso_configs/pylibraries/pepperpy/hooks.py b/iso_configs/pylibraries/pepperpy/hooks.py index 55fa9a4c..f6ab62db 100644 --- a/iso_configs/pylibraries/pepperpy/hooks.py +++ b/iso_configs/pylibraries/pepperpy/hooks.py @@ -177,11 +177,8 @@ def final_cleanup(): Followed by "\" , add files to be removed, one per line. """ files_to_remove = [ "/usr/bin/install-debian", - "/usr/share/applications/install-debian.desktop", - "/usr/share/applications/xfburn.desktop", - "/usr/share/applications/luakit.desktop", - "/root/.cache/pip" - ] + "/usr/share/applications/min.desktop" + ] for file_path in files_to_remove: if os.path.exists(file_path): os.system(f"rm -rf {file_path}")