Update: Fixed Path for Openpox, in the nightly

Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2024-01-27 00:11:24 +09:00
parent 3ed893d28e
commit 635fc3729d
1 changed files with 5 additions and 5 deletions

View File

@ -77,10 +77,10 @@ def check_build_type():
'DEB.32gfb': ('deb', '32', 'GFB'), 'DEB.32gfb': ('deb', '32', 'GFB'),
'DEV.64gfb': ('dev', '64', 'GFB'), 'DEV.64gfb': ('dev', '64', 'GFB'),
'DEV.32gfb': ('dev', '32', 'GFB'), 'DEV.32gfb': ('dev', '32', 'GFB'),
'DEB.64opb': ('deb', '64', 'OPENBOX'), 'DEB.64opb': ('deb', '64', 'OPB'),
'DEB.32opb': ('deb', '32', 'OPENBOX'), 'DEB.32opb': ('deb', '32', 'OPB'),
'DEV.64opb': ('dev', '64', 'OPENBOX'), 'DEV.64opb': ('dev', '64', 'OPB'),
'DEV.32opb': ('dev', '32', 'OPENBOX'), 'DEV.32opb': ('dev', '32', 'OPB'),
} }
@ -103,7 +103,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', 'openbox', 'xfce'] de_list = ['gfb', 'opb', 'xfce']
for archs in arch_list: for archs in arch_list:
for desktops in de_list: for desktops in de_list:
full_path = [] full_path = []