Add generate-docs command to build task

The Swift Docc has to run in a Linux container to be able to build the
documentation, as it needs access to the inotify.h header files.
This commit is contained in:
T. R. Bernstein
2026-03-12 18:10:31 +01:00
parent 39fe5c9237
commit 984b0dd29c
4 changed files with 196 additions and 2 deletions

View File

@@ -4,6 +4,6 @@ import ArgumentParser
struct Command: AsyncParsableCommand {
static let configuration = CommandConfiguration(
abstract: "Project tasks of Astzweig's Swift Inotify project.",
subcommands: [TestCommand.self]
subcommands: [TestCommand.self, GenerateDocsCommand.self]
)
}