diff options
author | Joey Hess <joey@kitenet.net> | 2013-04-13 19:26:59 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-04-13 19:26:59 -0400 |
commit | 3ae578996e88f1c23380deb8db5d28fea026067d (patch) | |
tree | 5116960c12023b5ce62650de515e6337e614d36c /Remote | |
parent | 0957b771da4c58f593f3ecaf194ffdd5c6d335a5 (diff) |
fix tab damage
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Helper/Ssh.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Remote/Helper/Ssh.hs b/Remote/Helper/Ssh.hs index 2e6b6d57c..f8e9353b7 100644 --- a/Remote/Helper/Ssh.hs +++ b/Remote/Helper/Ssh.hs @@ -22,8 +22,8 @@ sshToRepo :: Git.Repo -> [CommandParam] -> Annex [CommandParam] sshToRepo repo sshcmd = do g <- fromRepo id let c = extractRemoteGitConfig g (Git.repoDescribe repo) - opts = map Param $ remoteAnnexSshOptions c - host = Git.Url.hostuser repo + let opts = map Param $ remoteAnnexSshOptions c + let host = Git.Url.hostuser repo params <- sshCachingOptions (host, Git.Url.port repo) opts return $ params ++ Param host : sshcmd |