blob: 49090ac101f1f926aa60324dd29cf756c8f2ac00 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from buildbot.steps.shell import ShellCommand
class Doxygen(ShellCommand):
name = "doxygen"
description = ["generating docs"]
descriptionDone = ["generated docs"]
command = ["doxygen"]
|