blob: 49090ac101f1f926aa60324dd29cf756c8f2ac00 (
plain) (
tree)
|
|
from buildbot.steps.shell import ShellCommand
class Doxygen(ShellCommand):
name = "doxygen"
description = ["generating docs"]
descriptionDone = ["generated docs"]
command = ["doxygen"]
|