summaryrefslogtreecommitdiff
path: root/Propellor/Property
diff options
context:
space:
mode:
authorJoey Hess2014-04-13 14:18:31 -0400
committerJoey Hess2014-04-13 14:18:31 -0400
commit3835e6b1c7cdb7ba2ed14bf872331bf44f95cb17 (patch)
tree86a72591ef37f33b4660cdc5f2969c281f028f29 /Propellor/Property
parent70a5e9fe7b441440e1634e93aebbfb4c85c230aa (diff)
propellor spin
Diffstat (limited to 'Propellor/Property')
-rw-r--r--Propellor/Property/Git.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Propellor/Property/Git.hs b/Propellor/Property/Git.hs
index 24feabd8..431f4134 100644
--- a/Propellor/Property/Git.hs
+++ b/Propellor/Property/Git.hs
@@ -80,8 +80,7 @@ cloned owner url dir mbranch = check originurl (Property desc checkout)
removeDirectoryRecursive dir
createDirectoryIfMissing True (takeDirectory dir)
ensureProperty $ userScriptProperty owner $ catMaybes
- [ Just "set -x"
- , Just $ "git clone " ++ shellEscape url ++ " " ++ shellEscape dir
+ [ Just $ "git clone " ++ shellEscape url ++ " " ++ shellEscape dir
, Just $ "cd " ++ shellEscape dir
, ("git checkout " ++) <$> mbranch
]