Do not ignore error from Qt tools
This commit is contained in:
parent
6a88c9fe78
commit
c9d627351e
|
@ -90,6 +90,9 @@ def compile(qhpfile):
|
||||||
if not os.system(QHELPCOMPILER + ' '+qhpfile+' -o '+qchfile):
|
if not os.system(QHELPCOMPILER + ' '+qhpfile+' -o '+qchfile):
|
||||||
if VERBOSE: print("Successfully created",qchfile)
|
if VERBOSE: print("Successfully created",qchfile)
|
||||||
return 0
|
return 0
|
||||||
|
else:
|
||||||
|
os.system('cat -v ' + qhpfile)
|
||||||
|
raise "Error during generation of freecad.qch"
|
||||||
|
|
||||||
def generate(qhcpfile):
|
def generate(qhcpfile):
|
||||||
"generates qassistant-specific settings like icon, title, ..."
|
"generates qassistant-specific settings like icon, title, ..."
|
||||||
|
@ -104,6 +107,9 @@ def generate(qhcpfile):
|
||||||
if not os.system(QCOLLECTIOMGENERATOR+' '+qhcpfile+' -o '+qhcfile):
|
if not os.system(QCOLLECTIOMGENERATOR+' '+qhcpfile+' -o '+qhcfile):
|
||||||
if VERBOSE: print("Successfully created ",qhcfile)
|
if VERBOSE: print("Successfully created ",qhcfile)
|
||||||
return 0
|
return 0
|
||||||
|
else:
|
||||||
|
os.system('cat -v ' + qhcpfile)
|
||||||
|
raise "Error during generation of freecad.qhc"
|
||||||
|
|
||||||
def createCollProjectFile():
|
def createCollProjectFile():
|
||||||
qprojectfile = '''<?xml version="1.0" encoding="UTF-8"?>
|
qprojectfile = '''<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user