Remove duplicated script: scripts/gen-changelog exists

This commit is contained in:
Matthias Beyer 2018-04-25 19:34:32 +02:00
parent be62843608
commit 08ce39989f
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
#!/usr/bin/env bash
if [[ -z "$1" ]]; then
echo "No rev list given"
exit 1
fi
for rev in $(git rev-list $1); do
if git notes --ref=changelog list $rev &> /dev/null; then
git log -n 1 --show-notes=* --pretty="format:* %N" $rev
fi
done