Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-01-10 04:04:21 +0400
committerisaacs <i@izs.me>2013-01-10 04:55:12 +0400
commitc50c33e9397d7a0a8717e8ce7530572907c054ad (patch)
tree445f22682a5654f9fc4aa846bfabeb0bff801f43 /tools
parented825f488867d7586bee6ca4feb5fe5b0461775e (diff)
2012.01.09, Version 0.8.17 (Stable)v0.8.17
* npm: Upgrade to v1.2.0 - peerDependencies (Domenic Denicola) - node-gyp v0.8.2 (Nathan Rajlich) - Faster installs from github user/project shorthands (Nathan Zadoks) * typed arrays: fix 32 bit size/index overflow (Ben Noordhuis) * http: Improve performance of single-packet responses (Ben Noordhuis) * install: fix openbsd man page location (Ben Noordhuis) * http: bubble up parser errors to ClientRequest (Brian White)
Diffstat (limited to 'tools')
-rw-r--r--tools/changelog-head.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/changelog-head.sh b/tools/changelog-head.sh
index e0cec166385..94821e107f2 100644
--- a/tools/changelog-head.sh
+++ b/tools/changelog-head.sh
@@ -2,6 +2,9 @@
cat ChangeLog | {
s=-1
while read line; do
+ if [ "${line:0:1}" == "-" ]; then
+ line=" $line"
+ fi
if [ "${line:0:1}" == "2" ]; then
let "++s"
fi