blob: d825ac97c255213d31c98b1ca6233defead7784b (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# run this script after doing git-dch -R --since debian/0.xxx and
# massaging the changelog a bit.
VERSION=$(dpkg-parsechangelog | sed -n 's/^Version: //p')
git-tag -s -u dancer@debian.org -m "pbuilder release $VERSION" debian/$VERSION
|