From 3835e6b1c7cdb7ba2ed14bf872331bf44f95cb17 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 13 Apr 2014 14:18:31 -0400 Subject: [PATCH] propellor spin --- Propellor/Property/Git.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Propellor/Property/Git.hs b/Propellor/Property/Git.hs index 24feabd..431f413 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 ]