From 96cd14ac6bafd2f6073c7e6bbc434bc5367e2f0d Mon Sep 17 00:00:00 2001 From: debianpepper Date: Sat, 22 Jun 2024 22:00:37 +0900 Subject: [PATCH] Updated Signed-off-by: debianpepper --- python_modules/infra.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python_modules/infra.py b/python_modules/infra.py index 49818c04..3f060dc4 100644 --- a/python_modules/infra.py +++ b/python_modules/infra.py @@ -402,7 +402,8 @@ def add_web_profile(): ) shutil.copytree(HOME_FOLDER + lw_src_path, HOME_FOLDER + WPCHROOT + des_src_path, - dirs_exist_ok=True + dirs_exist_ok=True, + ignore=ignore_missing_files ) profile_copied = True break @@ -412,7 +413,8 @@ def add_web_profile(): ) shutil.copytree(HOME_FOLDER + ff_src_path, HOME_FOLDER + WPCHROOT + des_src_path, - dirs_exist_ok=True + dirs_exist_ok=True, + ignore=ignore_missing_files )