diff --git a/Propellor/CmdLine.hs b/Propellor/CmdLine.hs index 6d7f862..3de7106 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"]