From 7681b48f045166d1006246a6d1f2c795d836b6d8 Mon Sep 17 00:00:00 2001 From: manuel Date: Sat, 25 May 2024 11:57:45 +0000 Subject: [PATCH] update hooks.py to remove calamares-install-debian.desktop from /usr/share/applications --- iso_configs/pylibraries/pepperpy/hooks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iso_configs/pylibraries/pepperpy/hooks.py b/iso_configs/pylibraries/pepperpy/hooks.py index 53a40c57..a92865c2 100644 --- a/iso_configs/pylibraries/pepperpy/hooks.py +++ b/iso_configs/pylibraries/pepperpy/hooks.py @@ -177,7 +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/min.desktop" + "/usr/share/applications/min.desktop", + "/usr/share/applications/calamares-install-debian.desktop" ] for file_path in files_to_remove: if os.path.exists(file_path):