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:
@@ -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.")
|
||||
|
||||
Reference in New Issue
Block a user