reinject: Add a sanity check for using an annexed file as the source file.

This commit is contained in:
Joey Hess 2011-12-12 13:43:52 -04:00
parent 79345ad5fc
commit 6edaabd040
2 changed files with 4 additions and 2 deletions

View file

@ -24,8 +24,9 @@ start :: [FilePath] -> CommandStart
start (src:dest:[])
| src == dest = stop
| otherwise = do
showStart "reinject" dest
next $ whenAnnexed (perform src) dest
ifAnnexed src
(error $ "cannot used annexed file as src: " ++ src)
(next $ whenAnnexed (perform src) dest)
start _ = error "specify a src file and a dest file"
perform :: FilePath -> FilePath -> (Key, Backend Annex) -> CommandPerform

1
debian/changelog vendored
View file

@ -1,6 +1,7 @@
git-annex (3.20111212) UNRELEASED; urgency=low
* Union merge now finds the least expensive way to represent the merge.
* reinject: Add a sanity check for using an annexed file as the source file.
-- Joey Hess <joeyh@debian.org> Mon, 12 Dec 2011 01:57:49 -0400