Skip to content

Commit 9c03950

Browse files
committed
Release 1.0.4.2
1 parent 8438cf5 commit 9c03950

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Revision history for nix-output-monitor
22

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

66
## 1.0.4.0 -- 2021-12-03

bin/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import Update (countPaths, failedBuilds, initalState, updateState)
1414

1515
main :: IO ()
1616
main = do
17-
getArgs >>= \case
17+
System.Environment.getArgs >>= \case
1818
[] -> pass
1919
["--version"] -> do
2020
hPutStrLn stderr ("nix-output-monitor " <> fromString (showVersion version))

nix-output-monitor.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: nix-output-monitor
3-
version: 1.0.4.1
3+
version: 1.0.4.2
44
synopsis: Parses output of nix-build to show additional information
55
description:
66
A tool you can pipe stdout and stderr into to get your terminal output enriched with useful information.

src/IO.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ processText parser stateVar updater printerMay lazyInput = do
7272
clearLine
7373
putText buffer
7474
when (linesToWrite > 0) $ putTextLn output
75-
hFlush stdout
75+
System.IO.hFlush stdout
7676
waitForInput :: IO ()
7777
waitForInput =
7878
atomically $ check . not . Text.null =<< readTVar bufferVar

0 commit comments

Comments
 (0)