Newline after command-line logging output (#487)

This commit is contained in:
Yuta Saito 2024-06-14 02:18:22 +09:00 committed by GitHub
parent 078b3520a6
commit 0aa0cb7a24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ extension Process {
outputRedirection: .stream(stdout: stdout, stderr: stderr),
startNewProcessGroup: true,
loggingHandler: {
terminal.write($0)
terminal.write($0 + "\n")
}
)