Handle failed installs

This commit is contained in:
Carl D. Roth
2016-11-30 18:23:17 -08:00
parent 1d8d72ce7f
commit 15cbc92208

View File

@@ -32,7 +32,8 @@ class UpgradeHelper(Upgrader):
def _runInitrdShell(self, p):
if self.callback is not None:
self.callback(self, p)
return self.callback(self, p)
return 0
class App(SubprocessMixin):