diff options
author | Matt Goins <mjgoins@openflows.com> | 2008-12-04 21:35:28 -0500 |
---|---|---|
committer | Matt Goins <mjgoins@openflows.com> | 2008-12-04 21:35:28 -0500 |
commit | c3b912f2506c3a150f128a77317085cea599a814 (patch) | |
tree | bec1f26bf3455a06fae6cac00e2c795d73358234 /utils/build-releasenote | |
parent | e7c994d6f67d380ed0de21f1500ec395eaab6640 (diff) | |
parent | 2483b7de82423d6bf0dec774526a2ca9fef3d64d (diff) |
Merge commit 'dkg/master'
Diffstat (limited to 'utils/build-releasenote')
-rwxr-xr-x | utils/build-releasenote | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/build-releasenote b/utils/build-releasenote index 522917c..b25a87c 100755 --- a/utils/build-releasenote +++ b/utils/build-releasenote @@ -4,7 +4,7 @@ VERSION=`head -n1 packaging/debian/changelog | sed 's/.*(\([^)]*\)).*/\1/'` { sed "s/__VERSION__/$VERSION/g" < utils/releasenote.header - head -n$(( $(grep -n '^ --' debian/changelog | head -n1 | cut -f1 -d:) - 2 )) debian/changelog | tail -n+3 + head -n$(( $(grep -n '^ --' packaging/debian/changelog | head -n1 | cut -f1 -d:) - 2 )) packaging/debian/changelog | tail -n+3 sed "s/__VERSION__/$VERSION/g" < utils/releasenote.footer } > "website/news/release-$VERSION.mdwn" |