lowercase file extensions in copy_from_Kicad.py

This commit is contained in:
Andrei 2021-04-10 19:11:58 +03:00
parent 4a35a098a3
commit fc87fdf3e0
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ mkdir_p(dst_path)
# copy gerbers
print ("Reading gerbers from " + src_name + "*.*")
gerbers = [ ".GTL", ".GTO", ".GTP", ".GTS", ".GBL", ".GBO", ".GBS", ".GM1", ".DRL"]
gerbers = [ ".gtl", ".gto", ".gtp", ".gts", ".gbl", ".gbo", ".gbs", ".gm1", ".drl"]
for g in gerbers:
copied = False
for gPath in glob.glob(src_name + "*" + g):