From 644370e6c1806ead05be8263a7842699bfef755d Mon Sep 17 00:00:00 2001 From: debianpepper Date: Sat, 5 Aug 2023 17:51:10 +0900 Subject: [PATCH] Updated Signed-off-by: debianpepper --- python_modules/deb_64.py | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/python_modules/deb_64.py b/python_modules/deb_64.py index 5fc57798..2566d861 100644 --- a/python_modules/deb_64.py +++ b/python_modules/deb_64.py @@ -42,34 +42,34 @@ def copy_deb64_specific(): """" Debian 64 copy jobs""" source_q = queue.Queue() destination_q = queue.Queue() - source_q.put("src_deb64_osrelease") - source_q.put("src_deb64_osrelease") - source_q.put("src_deb64_slpash") - source_q.put("src_deb64_isolinux") - source_q.put("src_deb64_multi") - source_q.put("src_deb_grub_theme") - source_q.put("src_deb64_modules") - source_q.put("src_deb_splash_image") - source_q.put("src_deb_splash_image") - source_q.put("src_deb_live_theme") + 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_isolinux") + source_q.put("paths.src_deb64_multi") + source_q.put("paths.src_deb_grub_theme") + 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_live_theme") - destination_q.put("des_osrelease") - destination_q.put("des_osrelease_opt") - destination_q.put("des_splash") - destination_q.put("des_isolinux") - destination_q.put("des_archives") - destination_q.put("des_grub_theme") - destination_q.put("des_modules") - destination_q.put("des_splash_image_isolinux") - destination_q.put("des_splash_image_grub") - destination_q.put("des_live_theme") + destination_q.put("paths.des_osrelease") + destination_q.put("paths.des_osrelease_opt") + destination_q.put("paths.des_splash") + destination_q.put("paths.des_isolinux") + destination_q.put("paths.des_archives") + destination_q.put("paths.des_grub_theme") + destination_q.put("paths.des_modules") + destination_q.put("paths.des_splash_image_isolinux") + destination_q.put("paths.des_splash_image_grub") + destination_q.put("paths.des_live_theme") src_size = source_q.qsize() for p in range(src_size): x = source_q.get() y = destination_q.get() - shutil.copytree(cur_dir + paths.x, - WP_CHROOT + paths.y, + shutil.copytree(cur_dir + x, + WP_CHROOT + y, dirs_exist_ok=True )