mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-09 05:13:36 +08:00
Changed use of popen to getstatusoutput #4464
The getstatusoutput function seems easier to use
This commit is contained in:
@@ -775,13 +775,12 @@ class InternalCommands:
|
||||
if sys.version_info < (2, 4):
|
||||
raise Exception("Python 2.4 or greater required.")
|
||||
|
||||
output = os.popen(
|
||||
output = commands.getstatusoutput(
|
||||
"macdeployqt %s/Synergy.app -verbose=2 -codesign='%s'" % (
|
||||
targetDir, self.macIdentity)).read()
|
||||
targetDir, self.macIdentity))
|
||||
|
||||
print output
|
||||
|
||||
if "ERROR" in output:
|
||||
print output[1]
|
||||
if "ERROR" in output[1]:
|
||||
raise Exception("macdeployqt failed")
|
||||
|
||||
def signmac(self):
|
||||
|
||||
Reference in New Issue
Block a user