Signed-off-by: debianpepper <peppermintosteam@proton.me>
This commit is contained in:
debianpepper 2023-08-05 17:59:51 +09:00
parent fd95b65826
commit 1f5d67b6d5
1 changed files with 20 additions and 20 deletions

View File

@ -42,27 +42,27 @@ def copy_deb64_specific():
"""" Debian 64 copy jobs""" """" Debian 64 copy jobs"""
source_q = queue.Queue() source_q = queue.Queue()
destination_q = queue.Queue() destination_q = queue.Queue()
source_q.put(" + paths.src_deb64_osrelease") source_q.put(paths.src_deb64_osrelease)
source_q.put(" + paths.src_deb64_osrelease") source_q.put(paths.src_deb64_osrelease)
source_q.put(" + paths.src_deb64_slpash") source_q.put(paths.src_deb64_slpash)
source_q.put(" + paths.src_deb64_isolinux") source_q.put(paths.src_deb64_isolinux)
source_q.put(" + paths.src_deb64_multi") source_q.put(paths.src_deb64_multi)
source_q.put(" + paths.src_deb_grub_theme") source_q.put(paths.src_deb_grub_theme)
source_q.put(" + paths.src_deb64_modules") source_q.put(paths.src_deb64_modules)
source_q.put(" + paths.src_deb_splash_image") source_q.put(paths.src_deb_splash_image)
source_q.put(" + paths.src_deb_splash_image") source_q.put(paths.src_deb_splash_image)
source_q.put(" + paths.src_deb_live_theme") source_q.put(paths.src_deb_live_theme)
destination_q.put(" + paths.des_osrelease") destination_q.put(paths.des_osrelease)
destination_q.put(" + paths.des_osrelease_opt") destination_q.put(paths.des_osrelease_opt)
destination_q.put(" + paths.des_splash") destination_q.put(paths.des_splash)
destination_q.put(" + paths.des_isolinux") destination_q.put(paths.des_isolinux)
destination_q.put(" + paths.des_archives") destination_q.put(paths.des_archives)
destination_q.put(" + paths.des_grub_theme") destination_q.put(paths.des_grub_theme)
destination_q.put(" + paths.des_modules") destination_q.put(paths.des_modules)
destination_q.put(" + paths.des_splash_image_isolinux") destination_q.put(paths.des_splash_image_isolinux)
destination_q.put(" + paths.des_splash_image_grub") destination_q.put(paths.des_splash_image_grub)
destination_q.put(" + paths.des_live_theme") destination_q.put(paths.des_live_theme)
src_size = source_q.qsize() src_size = source_q.qsize()
for p in range(src_size): for p in range(src_size):