diff options
author | Joey Hess <joey@kitenet.net> | 2011-07-15 12:47:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-07-15 12:47:14 -0400 |
commit | 6c396a256c93464d726c66a95132536941871ee8 (patch) | |
tree | 7f934c9eae22a9cfd3fb1672ebd7bf6870439c81 /Remote/Ssh.hs | |
parent | 185f0b687081f47d059cc0503f4f6b671868f753 (diff) |
finished hlint pass
Diffstat (limited to 'Remote/Ssh.hs')
-rw-r--r-- | Remote/Ssh.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Ssh.hs b/Remote/Ssh.hs index 0d4842a1a..fe4e6dfc1 100644 --- a/Remote/Ssh.hs +++ b/Remote/Ssh.hs @@ -39,7 +39,7 @@ git_annex_shell r command params where dir = Git.workTree r shellcmd = "git-annex-shell" - shellopts = (Param command):(File dir):params + shellopts = Param command : File dir : params sshcmd = shellcmd ++ " " ++ unwords (map shellEscape $ toCommand shellopts) |