mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
c50c33e939
* 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)
19 lines
268 B
Bash
19 lines
268 B
Bash
#!/bin/bash
|
|
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
|
|
if [ $s -eq 1 ]; then
|
|
exit
|
|
else
|
|
echo "$line"
|
|
fi
|
|
done
|
|
}
|
|
|