mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-19 01:18:13 +02:00
Only trust errors for macdeployqt 5+ #4464
This commit is contained in:
parent
162ed1fef5
commit
9706252fb9
1 changed files with 4 additions and 1 deletions
|
@ -788,6 +788,9 @@ class InternalCommands:
|
||||||
|
|
||||||
print output[1]
|
print output[1]
|
||||||
if "ERROR" in 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")
|
raise Exception("macdeployqt failed")
|
||||||
|
|
||||||
def signmac(self):
|
def signmac(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue