Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2024-06-22 22:00:37 +09:00
parent db6fba2946
commit 96cd14ac6b
1 changed files with 4 additions and 2 deletions

View File

@ -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
)