[Copy Files][Fixed] Excluded locally_edited from the targets
This commit is contained in:
parent
b91c24b28e
commit
163027bff7
|
|
@ -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():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue