Make hlint happy

This commit is contained in:
Justin Leitgeb 2014-05-31 10:02:15 -05:00
parent fd8214dc7b
commit 976d336b61

View File

@ -249,8 +249,9 @@ testConfig = Config { _deployPath = "/tmp/project"
updateCacheRepo :: RC (Maybe String)
updateCacheRepo = do
conf <- use config
remoteT $ "cd " ++ (cacheRepoPath conf) ++ " && " ++
"git fetch origin +refs/heads/*:refs/heads/*"
remoteT $ intercalate " && "
[ "cd " ++ cacheRepoPath conf
, "git fetch origin +refs/heads/*:refs/heads/*" ]
------------------------------------------------------------------------------
buildRelease :: RC (Maybe String)
@ -273,9 +274,9 @@ buildRelease = do
initialState :: IO HapistranoState
initialState = do
ts <- currentTimestamp
return $ HapistranoState { _config = testConfig
, _timestamp = ts
}
return HapistranoState { _config = testConfig
, _timestamp = ts
}
------------------------------------------------------------------------------
main :: IO ()