Skip to content

Commit

Permalink
Release 1.0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maralorn committed Feb 25, 2022
1 parent 8438cf5 commit 9c03950
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Revision history for nix-output-monitor

## 1.0.4.1 -- 2022-02-25
## 1.0.4.1 & 1.0.4.2 -- 2022-02-25
* Rename an internal variable for relude 1.0 compat

## 1.0.4.0 -- 2021-12-03
Expand Down
2 changes: 1 addition & 1 deletion bin/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Update (countPaths, failedBuilds, initalState, updateState)

main :: IO ()
main = do
getArgs >>= \case
System.Environment.getArgs >>= \case
[] -> pass
["--version"] -> do
hPutStrLn stderr ("nix-output-monitor " <> fromString (showVersion version))
Expand Down
2 changes: 1 addition & 1 deletion nix-output-monitor.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: nix-output-monitor
version: 1.0.4.1
version: 1.0.4.2
synopsis: Parses output of nix-build to show additional information
description:
A tool you can pipe stdout and stderr into to get your terminal output enriched with useful information.
Expand Down
2 changes: 1 addition & 1 deletion src/IO.hs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ processText parser stateVar updater printerMay lazyInput = do
clearLine
putText buffer
when (linesToWrite > 0) $ putTextLn output
hFlush stdout
System.IO.hFlush stdout
waitForInput :: IO ()
waitForInput =
atomically $ check . not . Text.null =<< readTVar bufferVar
Expand Down

0 comments on commit 9c03950

Please sign in to comment.