From 952809a19ddf7bc229c9dd43553d6ba80ba370f2 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 5 Mar 2024 08:24:03 -0300 Subject: [PATCH] [Present][Fixed] Problems when using gerbers already generated If the gerbers were also used to be generate and already generated --- CHANGELOG.md | 1 + kibot/out_kikit_present.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b14459fe..bb08942d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Filters: _none filter not always honored (i.e. exclude in BoM) (#580) - PCB Parity: components excluded from the board reported anyways (#585) - BoardView: X axis mirroring issues (whitequark/kicad-boardview#11) +- Present: Problems when using gerbers already generated ## [1.6.4] - 2024-02-02 ### Added diff --git a/kibot/out_kikit_present.py b/kibot/out_kikit_present.py index 02a6732b..7695e322 100644 --- a/kibot/out_kikit_present.py +++ b/kibot/out_kikit_present.py @@ -157,7 +157,7 @@ class PresentBoards(Optionable): # Configure it according to our needs with TemporaryDirectory() as tmp_dir: logger.debug('Generating the gerbers at '+tmp_dir) - out.done = False + out._done = False out.dir = tmp_dir out.options.variant = None run_output(out)