mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-18 10:46:16 +02:00
11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
#!/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
|