38 lines
906 B
Swift
38 lines
906 B
Swift
import ArgumentParser
|
|
import CliClient
|
|
import Dependencies
|
|
|
|
struct BuildCommand: AsyncParsableCommand {
|
|
|
|
static let commandName = "build"
|
|
|
|
static let configuration = CommandConfiguration.playbookCommandConfiguration(
|
|
commandName: commandName,
|
|
abstract: "Build a home performance assesment project.",
|
|
examples: (label: "Build Project", example: "\(commandName) /path/to/project")
|
|
)
|
|
|
|
@OptionGroup var globals: GlobalOptions
|
|
|
|
@Argument(
|
|
help: "Path to the project directory.",
|
|
completion: .directory
|
|
)
|
|
var projectDir: String
|
|
|
|
@Argument(
|
|
help: "Extra arguments passed to the playbook."
|
|
)
|
|
var extraArgs: [String] = []
|
|
|
|
mutating func run() async throws {
|
|
try await runPlaybook(
|
|
commandName: Self.commandName,
|
|
globals: globals,
|
|
extraArgs: extraArgs,
|
|
"--tags", "build-project",
|
|
"--extra-vars", "project_dir=\(projectDir)"
|
|
)
|
|
}
|
|
}
|