diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-19 12:44:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-19 12:44:24 -0400 |
commit | 67cc72d540d8dd03f433a135297ba86d896ba14d (patch) | |
tree | 9730d5abcb9b268448eca937a13df88912e06f8e /Annex/Direct.hs | |
parent | 20ff17f05aa8f0e553d11e5a3ca714009ce80440 (diff) |
normalise associated files
Sometimes ./file will be passed in, and sometimes file; need to treat these
the same.
Diffstat (limited to 'Annex/Direct.hs')
-rw-r--r-- | Annex/Direct.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Direct.hs b/Annex/Direct.hs index 3846b0a9e..6ddea08fb 100644 --- a/Annex/Direct.hs +++ b/Annex/Direct.hs @@ -175,7 +175,7 @@ toDirectGen :: Key -> FilePath -> Annex (Maybe (Annex ())) toDirectGen k f = do loc <- inRepo $ gitAnnexLocation k createContentDir loc -- thaws directory too - locs <- filter (/= f) <$> addAssociatedFile k f + locs <- filter (/= normalise f) <$> addAssociatedFile k f case locs of [] -> ifM (liftIO $ doesFileExist loc) ( return $ Just $ do |