From e3b3b7c1a6ea9c31b85f12c89b23d3e263171971 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 22 Feb 2025 01:23:49 +0100 Subject: [PATCH] Integrated the BuildArtifactTask task into the BuildCommand command in the executable target. --- Executable/Sources/Commands/BuildCommand.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Executable/Sources/Commands/BuildCommand.swift b/Executable/Sources/Commands/BuildCommand.swift index be1fc08..64cf792 100644 --- a/Executable/Sources/Commands/BuildCommand.swift +++ b/Executable/Sources/Commands/BuildCommand.swift @@ -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) } }