summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2014-11-18 15:49:23 -0400
committerJoey Hess2014-11-18 15:49:23 -0400
commit18ac1234ac8a3c46e89a3403f8b50ab8d93c55f6 (patch)
tree9daeb11ed2169c1743472744946128f7994eb04c /src
parent24a3f1bf8a9d32620fddf73fe5f53e350c069a40 (diff)
fix command again
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/CmdLine.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs
index c79b2592..9b0d755d 100644
--- a/src/Propellor/CmdLine.hs
+++ b/src/Propellor/CmdLine.hs
@@ -306,7 +306,7 @@ boot = do
hout <- dup stdOutput
hClose stdin
hClose stdout
- unlessM (boolSystem "git" [Param "pull", Param "--upload-pack", Param $ "sh -c ./propellor --gitpush " ++ show hin ++ " " ++ show hout, Param "."]) $
+ unlessM (boolSystem "git" [Param "pull", Param "--upload-pack", Param $ "./propellor --gitpush " ++ show hin ++ " " ++ show hout, Param "."]) $
warningMessage "git pull from client failed"
-- Shim for git push over the propellor ssh channel.