diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-15 00:58:31 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2010-03-15 00:58:31 -0400 |
commit | f2e90a01372b60d5511fb07d56223b3900100f63 (patch) | |
tree | 03748b7da6953d5d94111a7046064ece4839e52e /utils | |
parent | 1bb35e8d63f3c28d29f0c033333aeff7a57bde91 (diff) |
more fixes for s/changelog/Changelog/ -- i begin to suspect it was not worth it :(
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/build-releasenote | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/build-releasenote b/utils/build-releasenote index cac0869..71891ff 100755 --- a/utils/build-releasenote +++ b/utils/build-releasenote @@ -8,11 +8,11 @@ # Copyright: © 2008-2010 # License: GPL, v3 or later -VERSION=`head -n1 changelog | sed 's/.*(\([^)]*\)).*/\1/'` +VERSION=`head -n1 Changelog | sed 's/.*(\([^)]*\)).*/\1/'` { sed "s/__VERSION__/$VERSION/g" < utils/releasenote.header - head -n$(( $(grep -n '^ --' changelog | head -n1 | cut -f1 -d:) - 2 )) changelog | tail -n+3 + head -n$(( $(grep -n '^ --' Changelog | head -n1 | cut -f1 -d:) - 2 )) Changelog | tail -n+3 sed "s/__VERSION__/$VERSION/g" < utils/releasenote.footer } > "website/news/release-$VERSION.mdwn" |