Support swift-subprocess 1.x

The exclusive `from: "0.3.0"` range blocked dependents that already
use swift-subprocess 1.0. Version 1.0 renamed the stdio outputs used
by the task CLI to `currentStandardOutput` and `currentStandardError`.
This commit is contained in:
T. R. Bernstein
2026-09-13 22:28:26 +02:00
parent 10943f9ce3
commit 8cedee6139
4 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ struct TestCommand: AsyncParsableCommand {
"-w", "/code", "swift:latest",
"/bin/bash", "-c", "swift test --skip InotifyLimitTests; swift test --skip-build --filter InotifyLimitTests"
],
output: .standardOutput,
error: .standardError
output: .currentStandardOutput,
error: .currentStandardError
)
if dockerRunResult.terminationStatus.isSuccess {
noora.success("All tests completed successfully.")