Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/Container-Compose/Commands/ComposeBuild.swift
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public struct ComposeBuild: AsyncParsableCommand, @unchecked Sendable {

print("\n----------------------------------------")
print("Building \(serviceName) -> \(imageTag)")
let buildCommand = try Application.BuildCommand.parse(commands + logging.passThroughCommands())
var buildCommand = try Application.BuildCommand.parse(commands + logging.passThroughCommands())
try buildCommand.validate()
try await buildCommand.run()
print("Built \(serviceName) successfully.")
Expand Down
Loading