mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-18 16:21:54 +02:00
11 lines
193 B
Bash
11 lines
193 B
Bash
|
#!/bin/sh
|
||
|
# Generate debian/changelog.upstream.
|
||
|
#
|
||
|
# Uses debian/changelog and the git revision log.
|
||
|
#
|
||
|
|
||
|
set -e
|
||
|
|
||
|
dpkg-parsechangelog --format rfc822 --all |
|
||
|
awk -f debian/changelog.upstream.awk
|