diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-12-06 10:04:11 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-12-06 10:04:11 +0100 |
| commit | b6b1c6e8b446abc80a3f4b6f382407e4e262e28e (patch) | |
| tree | 0280ffaf3667324643b92ec13e02a3aeeec22042 | |
| parent | 80bec33fe694f916eba96befdab63548077cdec5 (diff) | |
Align child stdout and matched lines in output
| -rw-r--r-- | src/Output.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Output.hs b/src/Output.hs index 0ad1f12..b91bbdd 100644 --- a/src/Output.hs +++ b/src/Output.hs @@ -92,7 +92,7 @@ outColor OutputAlways = "0" outColor OutputTestRaw = "0" outSign :: OutputType -> Text -outSign OutputChildStdout = T.empty +outSign OutputChildStdout = " " outSign OutputChildStderr = T.pack "!" outSign OutputChildStdin = T.empty outSign OutputChildInfo = T.pack "." |