From c9d627351e22fc8bd2f800d62d703f53a115519b Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Sun, 31 Jan 2021 20:30:30 +0000 Subject: [PATCH] Do not ignore error from Qt tools --- buildqhelp.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildqhelp.py b/buildqhelp.py index 92d23f4..66191a6 100755 --- a/buildqhelp.py +++ b/buildqhelp.py @@ -90,6 +90,9 @@ def compile(qhpfile): if not os.system(QHELPCOMPILER + ' '+qhpfile+' -o '+qchfile): if VERBOSE: print("Successfully created",qchfile) return 0 + else: + os.system('cat -v ' + qhpfile) + raise "Error during generation of freecad.qch" def generate(qhcpfile): "generates qassistant-specific settings like icon, title, ..." @@ -104,6 +107,9 @@ def generate(qhcpfile): if not os.system(QCOLLECTIOMGENERATOR+' '+qhcpfile+' -o '+qhcfile): if VERBOSE: print("Successfully created ",qhcfile) return 0 + else: + os.system('cat -v ' + qhcpfile) + raise "Error during generation of freecad.qhc" def createCollProjectFile(): qprojectfile = '''