latest pushes

This commit is contained in:
Ronaldson Bellande 2024-10-13 21:46:43 -04:00
parent 56a3891b99
commit 239194abf5

View File

@ -34,7 +34,7 @@ def copy_source_files(src_dir, dest_dir):
dest_src_dir = os.path.join(dest_dir, 'src')
ensure_directory(dest_src_dir)
for root, dirs, files in os.walk(src_dir):
for root, _, files in os.walk(src_dir):
for file in files:
src_path = os.path.join(root, file)
rel_path = os.path.relpath(src_path, src_dir)