summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/CmdLine.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs
index f8d5d57d..e84a220e 100644
--- a/src/Propellor/CmdLine.hs
+++ b/src/Propellor/CmdLine.hs
@@ -221,7 +221,7 @@ spin hn hst = do
, std_out = UseHandle toh }
(Nothing, Nothing, Nothing, h) <- createProcess p
unlessM ((==) ExitSuccess <$> waitForProcess h) $
- warningMessage "git send-pack failed"
+ warningMessage "git upload-pack failed"
-- no more protocol possible after
-- git push
Just NeedGitClone -> do
@@ -324,7 +324,6 @@ gitPush hin hout = void $ fromstdin `concurrently` tostdout
connect fromh toh = do
b <- B.hGetSome fromh 40960
unless (B.null b) $ do
- hPutStrLn stderr $ show ("got", fromh, b)
B.hPut toh b
hFlush toh
connect fromh toh