diff options
Diffstat (limited to 'build-root/scripts')
-rwxr-xr-x | build-root/scripts/generate-deb-changelog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-root/scripts/generate-deb-changelog b/build-root/scripts/generate-deb-changelog index a143431257f..7bdc6337b0a 100755 --- a/build-root/scripts/generate-deb-changelog +++ b/build-root/scripts/generate-deb-changelog @@ -30,7 +30,7 @@ if [ -n "${ADDS}" ]; then print_changelog_item fi -for TAG in $(git tag -l 'v[0-9].[0-9].[0-9]' | sort -r ); do +for TAG in $(git tag -l 'v[0-9][0-9].[0-9][0-9]' | sort -r ); do VER=$(echo ${TAG}| sed -e 's/^v//') DESC=$(git tag -l -n20 ${TAG} | tail -n+2 | sed -e 's/^ */ /') print_changelog_item |