Fix metadata hook behavior when multiple files are added at once. Thanks, Klaus Ethgen.
This commit is contained in:
parent
12f7c0724f
commit
baa9954e06
2 changed files with 4 additions and 2 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -4,6 +4,8 @@ git-annex (6.20160230) UNRELEASED; urgency=medium
|
||||||
* Fix data loss that can occur when annex.pidlock is set in a repository.
|
* Fix data loss that can occur when annex.pidlock is set in a repository.
|
||||||
* Fix bug preventing moving files to/from a repository with annex.pidlock set.
|
* Fix bug preventing moving files to/from a repository with annex.pidlock set.
|
||||||
* Fix shared lock file FD leak.
|
* Fix shared lock file FD leak.
|
||||||
|
* Fix metadata hook behavior when multiple files are added at once.
|
||||||
|
Thanks, Klaus Ethgen.
|
||||||
|
|
||||||
-- Joey Hess <id@joeyh.name> Mon, 29 Feb 2016 13:00:30 -0400
|
-- Joey Hess <id@joeyh.name> Mon, 29 Feb 2016 13:00:30 -0400
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#! /bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Joey Hess <id@joeyh.name>
|
# Copyright (C) 2014 Joey Hess <id@joeyh.name>
|
||||||
# Copyright (C) 2016 Klaus Ethgen <Klaus@Ethgen.ch>
|
# Copyright (C) 2016 Klaus Ethgen <Klaus@Ethgen.ch>
|
||||||
|
@ -112,7 +112,7 @@ if [ -n "$*" ]; then
|
||||||
process "$f"
|
process "$f"
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
for f in "$(git diff-index --name-only --cached $against)"; do
|
git diff-index --name-only --cached $against | while read f; do
|
||||||
process "$f"
|
process "$f"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue