Esempio n. 1
0
 def startBuild(self, cmd):
     if cmd.rc != 0:
         log.msg("Failure when running %s." % cmd)
         self.finished(FAILURE)
     else:
         return WarningCountingShellCommand.start(self)
Esempio n. 2
0
 def startBuild(self, cmd):
     if cmd.rc != 0:
         log.msg("Failure when running %s." % cmd)
         self.finished(FAILURE)
     else:
         return WarningCountingShellCommand.start(self)
Esempio n. 3
0
 def startBuild(self, dummy):
     return WarningCountingShellCommand.start(self)
Esempio n. 4
0
 def start(self):
     # Don't forget to remove all the empty items from the command,
     # which we could get because of WithProperties rendered as empty strings.
     self.command = filter(bool, self.command)
     # Then upcall.
     WarningCountingShellCommand.start(self)
Esempio n. 5
0
 def start(self):
     # Don't forget to remove all the empty items from the command,
     # which we could get because of WithProperties rendered as empty strings.
     self.command = filter(bool, self.command)
     # Then upcall.
     WarningCountingShellCommand.start(self)