fsck: Avoid getting confused by Windows path separators

This commit is contained in:
Joey Hess 2013-06-17 21:18:43 -04:00
parent d80a0f62a4
commit 9ef09587dc
2 changed files with 2 additions and 1 deletions

View file

@ -207,7 +207,7 @@ fixLink key file = do
return True
where
go want have
| want /= have = do
| want /= fromInternalGitPath have = do
showNote "fixing link"
liftIO $ createDirectoryIfMissing True (parentDir file)
liftIO $ removeFile file

1
debian/changelog vendored
View file

@ -30,6 +30,7 @@ git-annex (4.20130602) UNRELEASED; urgency=low
* status: No longer shows dead repositories.
* annex.debug can now be set to enable debug logging by default.
The webapp's debugging check box does this.
* fsck: Avoid getting confused by Windows path separators
-- Joey Hess <joeyh@debian.org> Mon, 10 Jun 2013 12:52:44 -0400