Improved the Build subcommand to support the building of Docker images #11

Merged
javier merged 10 commits from setup/docker into main 2025-02-22 00:33:53 +00:00
Showing only changes of commit e3b3b7c1a6 - Show all commits

View File

@ -20,9 +20,9 @@ extension Colibri {
mutating func run() async throws {
let terminalService = TerminalService()
let buildProject = BuildProjectTask(terminalService: terminalService)
let buildArtifact = BuildArtifactTask(terminalService: terminalService)
try await buildProject(at: options.locationURL)
try await buildArtifact(options.artifact, at: options.locationURL)
}
}