summaryrefslogtreecommitdiff
path: root/post-apt.d/40git-rm
diff options
context:
space:
mode:
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