summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2007-11-20 01:04:31 -0500
committerJoey Hess <joey@kodama.kitenet.net>2007-11-20 01:04:31 -0500
commite79c626dd0934523b47aa93978a0e46e9027d3b8 (patch)
treed7026ada94acaf05c6795ab6203b01c27c3acd3f
parent39de672f38986243b18d8cf82f0b0c24f23cf2fb (diff)
* Pass --quiet to git-rm calls.
-rw-r--r--debian/changelog1
-rwxr-xr-xpost-apt.d/40git-rm2
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