update finish_cleanup.py

This commit is contained in:
manuel 2024-03-20 12:22:38 -01:00
parent dc4989f512
commit ffc5b26486
1 changed files with 4 additions and 2 deletions

View File

@ -81,7 +81,9 @@ def check_build_type():
'DEB.32opb': ('deb', '32', 'OPB'), 'DEB.32opb': ('deb', '32', 'OPB'),
'DEV.64opb': ('dev', '64', 'OPB'), 'DEV.64opb': ('dev', '64', 'OPB'),
'DEV.32opb': ('dev', '32', 'OPB'), 'DEV.32opb': ('dev', '32', 'OPB'),
'DEB.64loaded': ('deb', '64', 'LOADED'),
'DEV.64loaded': ('dev', '64', 'LOADED'),
} }
@ -103,7 +105,7 @@ def kill_old_iso():
""" Delete older ISOs""" """ Delete older ISOs"""
base_path = BASE_DESTINATION base_path = BASE_DESTINATION
arch_list = ['/deb32/', '/deb64/', '/debarm/', '/dev32/', '/dev64/', '/devarm/'] arch_list = ['/deb32/', '/deb64/', '/debarm/', '/dev32/', '/dev64/', '/devarm/']
de_list = ['gfb', 'opb', 'xfce'] de_list = ['gfb', 'opb', 'xfce' 'loaded']
for archs in arch_list: for archs in arch_list:
for desktops in de_list: for desktops in de_list:
full_path = [] full_path = []