diff options
Diffstat (limited to 'Annex/Ssh.hs')
-rw-r--r-- | Annex/Ssh.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Ssh.hs b/Annex/Ssh.hs index 46885393c..a0aae2b7e 100644 --- a/Annex/Ssh.hs +++ b/Annex/Ssh.hs @@ -71,7 +71,7 @@ sshCleanup :: Annex () sshCleanup = do dir <- fromRepo gitAnnexSshDir sockets <- filter (not . isLock) <$> - liftIO (catchDefaultIO (dirContents dir) []) + liftIO (catchDefaultIO [] $ dirContents dir) forM_ sockets cleanup where cleanup socketfile = do |