Only trust errors for macdeployqt 5+ #4464
This commit is contained in:
parent
162ed1fef5
commit
9706252fb9
|
@ -788,6 +788,9 @@ class InternalCommands:
|
|||
|
||||
print output[1]
|
||||
if "ERROR" in output[1]:
|
||||
(qMajor, qMinor, qRev) = self.getQmakeVersion()
|
||||
if qMajor >= 5:
|
||||
# only listen to errors in qt 5+
|
||||
raise Exception("macdeployqt failed")
|
||||
|
||||
def signmac(self):
|
||||
|
|
Loading…
Reference in New Issue