summaryrefslogtreecommitdiff
path: root/commit.d
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-05 23:45:10 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-04-05 23:45:10 +0200
commit95d9d56c2fc702f5e9d7287a484e2c4a9ea6d8fb (patch)
tree13aab3a375239d34e09c4b6fefa6e8c089fecc61 /commit.d
parentb07320e49423c2035c196ce301abbb26ec06196c (diff)
Remove pointless bzr-rm script.
Diffstat (limited to 'commit.d')
-rwxr-xr-xcommit.d/40bzr-rm13
1 files changed, 0 insertions, 13 deletions
diff --git a/commit.d/40bzr-rm b/commit.d/40bzr-rm
deleted file mode 100755
index d908a40..0000000
--- a/commit.d/40bzr-rm
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-set -e
-
-IFS='
-'
-
-if [ "$VCS" = bzr ] && [ -d .bzr ]; then
- for file in $(bzr deleted); do
- if [ ! -d "$file" ]; then
- bzr rm --keep --quiet "$file"
- fi
- done
-fi