Fix dropping of files using the URL backend.

This commit is contained in:
Joey Hess 2011-03-17 11:49:21 -04:00
parent 9aada06745
commit 7b5b127608
3 changed files with 9 additions and 1 deletions

View file

@ -42,7 +42,7 @@ dummyStore :: FilePath -> Key -> Annex Bool
dummyStore _ _ = return False
dummyRemove :: Key -> Maybe a -> Annex Bool
dummyRemove _ _ = return False
dummyRemove _ _ = return True
dummyFsck :: Key -> Maybe FilePath -> Maybe a -> Annex Bool
dummyFsck _ _ _ = return True

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
git-annex (0.20110317) UNRELEASED; urgency=low
* Fix dropping of files using the URL backend.
-- Joey Hess <joeyh@debian.org> Thu, 17 Mar 2011 11:46:53 -0400
git-annex (0.20110316) experimental; urgency=low
* New repository format, annex.version=2.

View file

@ -9,3 +9,5 @@ git-annex: 1 failed
</pre>
At first I thought it was just my OSX machine not having the coreutils stuff load up before the BSD utils, but I then tried the same thing on my archlinux machine and it showed the same behaviour, that is I could not drop a file with the URL backend as shown in the walkthrough.
> Whoops, got some logic backwards. [[fixed|done]]! --[[Joey]]