We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bf55e commit 4ae31bdCopy full SHA for 4ae31bd
1 file changed
kibot/out_report.py
@@ -1217,6 +1217,9 @@ def run(self, fname):
1217
is_pcb_print_svg = o.type == 'pcb_print' and o.options.format == 'SVG'
1218
if any(not os.path.isfile(f) for f in out_files):
1219
run_output(o)
1220
+ if any(not os.path.isfile(f) for f in out_files):
1221
+ missing = [f for f in out_files if not os.path.isfile(f)]
1222
+ raise KiPlotConfigurationError(f'Output `{o}` failed to generate: {missing}')
1223
for n, of in enumerate(out_files):
1224
rel_path = os.path.relpath(of, base_dir)
1225
comment = o.comment
0 commit comments