From 4d7847e145a1c2210fa7a77e7c00e5ef33896f86 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 19 Jan 2024 13:01:14 -0300 Subject: [PATCH] [Copy Files][Project][Fixed] Check for the schematic To inform if it isn't there --- kibot/out_copy_files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kibot/out_copy_files.py b/kibot/out_copy_files.py index c7950bc6..eff31fe2 100644 --- a/kibot/out_copy_files.py +++ b/kibot/out_copy_files.py @@ -228,6 +228,7 @@ class Copy_FilesOptions(Base3DOptions): logger.debug('Saving the PCB to '+fname) GS.board.Save(fname) if mode_project: + GS.check_sch() logger.debug('Saving the schematic to '+dest_dir) GS.sch.save_variant(dest_dir) self.add_sch_files(extra_files, dest_dir)