summaryrefslogtreecommitdiff
path: root/Propellor/Property
diff options
context:
space:
mode:
authorJoey Hess2014-04-13 14:23:17 -0400
committerJoey Hess2014-04-13 14:23:17 -0400
commitc1307f5dc26b96e61743f590df5797999ca82d92 (patch)
tree7c64c0d9f653ad83846cc4533b7daf96e2cd2c71 /Propellor/Property
parent4b6b0e9ce16b68523feb9535aae751a0de6539e4 (diff)
propellor spin
Diffstat (limited to 'Propellor/Property')
-rw-r--r--Propellor/Property/Git.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Property/Git.hs b/Propellor/Property/Git.hs
index 431f4134..b2a53800 100644
--- a/Propellor/Property/Git.hs
+++ b/Propellor/Property/Git.hs
@@ -80,7 +80,7 @@ cloned owner url dir mbranch = check originurl (Property desc checkout)
removeDirectoryRecursive dir
createDirectoryIfMissing True (takeDirectory dir)
ensureProperty $ userScriptProperty owner $ catMaybes
- [ Just $ "git clone " ++ shellEscape url ++ " " ++ shellEscape dir
+ [ Just $ "git clone " ++ shellEscape url ++ " " ++ shellEscape dir ++ " < /dev/null"
, Just $ "cd " ++ shellEscape dir
, ("git checkout " ++) <$> mbranch
]