summaryrefslogtreecommitdiff
path: root/Propellor/Property
diff options
context:
space:
mode:
authorJoey Hess2014-04-13 14:15:49 -0400
committerJoey Hess2014-04-13 14:15:49 -0400
commit70a5e9fe7b441440e1634e93aebbfb4c85c230aa (patch)
treee7229d29346b90df82898d93c768cc5db88fba39 /Propellor/Property
parent8fb347b694378a4445106dec400bde0584593b1b (diff)
propellor spin
Diffstat (limited to 'Propellor/Property')
-rw-r--r--Propellor/Property/Git.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Propellor/Property/Git.hs b/Propellor/Property/Git.hs
index 431f4134..24feabd8 100644
--- a/Propellor/Property/Git.hs
+++ b/Propellor/Property/Git.hs
@@ -80,7 +80,8 @@ 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 "set -x"
+ , Just $ "git clone " ++ shellEscape url ++ " " ++ shellEscape dir
, Just $ "cd " ++ shellEscape dir
, ("git checkout " ++) <$> mbranch
]