diff options
| author | Joey Hess <joey@kitenet.net> | 2014-11-18 15:20:07 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-11-18 15:20:28 -0400 |
| commit | 72e8086d7e3287274f6280eaf9ddf4b8ed578470 (patch) | |
| tree | 645a805db2dd60bd8e52607fa7e0052131a2b913 | |
| parent | 3d98e31919ae14c63ffbaeaaab525c98fc41dcc8 (diff) | |
updte
| -rw-r--r-- | src/Propellor/CmdLine.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs index 1cf28d8e..dcdc64fb 100644 --- a/src/Propellor/CmdLine.hs +++ b/src/Propellor/CmdLine.hs @@ -306,7 +306,7 @@ boot = do -- reads from the second fd and sends it to stdout. gitPush :: Fd -> Fd -> IO () gitPush hin hout = do - print ("gitPush", hin, hout) + hPutStrLn stderr $ show ("gitPush", hin, hout) void $ fromstdin `concurrently` tostdout where fromstdin = do |
