diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | post-apt.d/40git-rm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 02146b9..45fade6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ etckeeper (0.4) UNRELEASED; urgency=low * Portuguese translation from Américo Monteiro. Closes: #451798 + * Pass --quiet to git-rm calls. -- Joey Hess <joeyh@debian.org> Sun, 18 Nov 2007 13:06:58 -0500 diff --git a/post-apt.d/40git-rm b/post-apt.d/40git-rm index 01161ca..680dac0 100755 --- a/post-apt.d/40git-rm +++ b/post-apt.d/40git-rm @@ -6,7 +6,7 @@ TAB=" " if [ -d .git ]; then for file in $(git ls-files --deleted); do if [ ! -d "$file" ]; then - git rm "$file" + git rm --quiet "$file" fi done fi |