summaryrefslogtreecommitdiff
path: root/hg/post-apt.d/40hg-rm
diff options
context:
space:
mode:
Diffstat (limited to 'hg/post-apt.d/40hg-rm')
-rw-r--r--hg/post-apt.d/40hg-rm12
1 files changed, 0 insertions, 12 deletions
diff --git a/hg/post-apt.d/40hg-rm b/hg/post-apt.d/40hg-rm
deleted file mode 100644
index 680dac0..0000000
--- a/hg/post-apt.d/40hg-rm
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-set -e
-
-TAB=" "
-
-if [ -d .git ]; then
- for file in $(git ls-files --deleted); do
- if [ ! -d "$file" ]; then
- git rm --quiet "$file"
- fi
- done
-fi