From e79c626dd0934523b47aa93978a0e46e9027d3b8 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 20 Nov 2007 01:04:31 -0500 Subject: * Pass --quiet to git-rm calls. --- debian/changelog | 1 + post-apt.d/40git-rm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 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 -- cgit v1.2.3