This PR contains the work done to add the *Build* subcommand that build a *Hummingbird* project from the command line to the `Colibri` command. Reviewed-on: #5 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
30 lines
730 B
Swift
30 lines
730 B
Swift
import Foundation
|
|
|
|
public struct BuildProjectTask {
|
|
|
|
// MARK: Properties
|
|
|
|
private let terminalService: TerminalServicing
|
|
|
|
// MARK: Initialisers
|
|
|
|
public init(terminalService: TerminalServicing) {
|
|
self.terminalService = terminalService
|
|
}
|
|
|
|
// MARK: Functions
|
|
|
|
public func callAsFunction(at location: URL? = nil) async throws (TerminalServiceError) {
|
|
let executableURL = URL(at: "/usr/bin/swift")
|
|
|
|
var arguments: [String] = ["build"]
|
|
|
|
if let location {
|
|
arguments.append(contentsOf: ["--package-path", location.pathString])
|
|
}
|
|
|
|
try await terminalService.run(executableURL, arguments: arguments)
|
|
}
|
|
|
|
}
|