summaryrefslogtreecommitdiff
path: root/merge-helpers/commit-with-changelog-diff
diff options
context:
space:
mode:
Diffstat (limited to 'merge-helpers/commit-with-changelog-diff')
-rwxr-xr-xmerge-helpers/commit-with-changelog-diff14
1 files changed, 0 insertions, 14 deletions
diff --git a/merge-helpers/commit-with-changelog-diff b/merge-helpers/commit-with-changelog-diff
deleted file mode 100755
index f1bf5e5..0000000
--- a/merge-helpers/commit-with-changelog-diff
+++ /dev/null
@@ -1,14 +0,0 @@
-#! /bin/sh
-
-if [ ! -r ChangeLog ] ; then
- echo "ERROR: No ChangeLog in current directory."
- exit 1
-fi
-
-cvs diff -u ChangeLog| grep ^+ | \
- sed -e '/^+++/d' -e 's/^+ //' -e 's/^+//' >ch
-cat ch
-
-cvs commit -F ch
-rm -f ch
-exit 0