summaryrefslogtreecommitdiff
path: root/post-apt.d/40git-rm
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 /post-apt.d/40git-rm
parent39de672f38986243b18d8cf82f0b0c24f23cf2fb (diff)
* Pass --quiet to git-rm calls.
Diffstat (limited to 'post-apt.d/40git-rm')
-rwxr-xr-xpost-apt.d/40git-rm2
1 files changed, 1 insertions, 1 deletions
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