summaryrefslogtreecommitdiff
path: root/Propellor
diff options
context:
space:
mode:
authorJoey Hess2014-04-03 12:26:27 -0400
committerJoey Hess2014-04-03 12:26:27 -0400
commit492e4c68c8ac6aa4963245120880dea5edfbc9e6 (patch)
treebd14deb56778b31fbc80f1197c352b53ecfea8ac /Propellor
parenta8eecbca216b3c3947fd1c5da715abda6a5147f9 (diff)
better template
Diffstat (limited to 'Propellor')
-rw-r--r--Propellor/CmdLine.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/CmdLine.hs b/Propellor/CmdLine.hs
index 6d7f862a..3de7106e 100644
--- a/Propellor/CmdLine.hs
+++ b/Propellor/CmdLine.hs
@@ -197,7 +197,7 @@ spin host = do
sendGitClone :: HostName -> String -> IO ()
sendGitClone host url = void $ actionMessage ("Pushing git repository to " ++ host) $
- withTmpFile "propellor.git." $ \tmp _ -> allM id
+ withTmpFile "propellor.git" $ \tmp _ -> allM id
-- TODO: ssh connection caching, or better push method
-- with less connections.
[ boolSystem "git" [Param "bundle", Param "create", File tmp, Param "HEAD"]