Compare commits
1 Commits
master
...
fix-pkexec
Author | SHA1 | Date | |
---|---|---|---|
|
29d14c01d1 |
@ -349,7 +349,12 @@ class ApplicationLauncher(easyButton):
|
|||||||
cmd = "mate-terminal -e \"" + self.appExec + "\""
|
cmd = "mate-terminal -e \"" + self.appExec + "\""
|
||||||
Execute(cmd, self.appPath)
|
Execute(cmd, self.appPath)
|
||||||
else:
|
else:
|
||||||
Execute(None, desktopFile=self.desktopFile)
|
if self.appExec.startswith("pkexec "):
|
||||||
|
print ("Using pkexec workaround...")
|
||||||
|
cmd = "sh -c \"" + self.appExec + "\""
|
||||||
|
Execute(cmd, self.appPath)
|
||||||
|
else:
|
||||||
|
Execute(None, desktopFile=self.desktopFile)
|
||||||
|
|
||||||
def uninstall(self, *args):
|
def uninstall(self, *args):
|
||||||
Execute("mint-remove-application " + self.desktopFile)
|
Execute("mint-remove-application " + self.desktopFile)
|
||||||
|
Loading…
Reference in New Issue
Block a user