[Copy Files][Fixed] Excluded locally_edited from the targets

This commit is contained in:
Salvador E. Tropea 2023-12-06 09:20:39 -03:00
parent b91c24b28e
commit 163027bff7
1 changed files with 2 additions and 1 deletions

View File

@ -174,7 +174,8 @@ class Copy_FilesOptions(Base3DOptions):
extra_files.append(table_fname) extra_files.append(table_fname)
if dry: if dry:
for lib in libs.keys(): for lib in libs.keys():
extra_files.append(os.path.join(out_lib_base, lib+'.kicad_sym')) if lib != 'locally_edited':
extra_files.append(os.path.join(out_lib_base, lib+'.kicad_sym'))
else: else:
# Create the libs # Create the libs
for lib, comps in libs.items(): for lib, comps in libs.items():