fix changelog retriever file

This commit is contained in:
InsanusMokrassar 2020-10-03 15:46:18 +06:00
parent 5f9cb25e18
commit 9824bf4297

11
changelog_info_retriever Normal file → Executable file
View File

@ -3,17 +3,14 @@
function parse() { function parse() {
version=$1 version=$1
read -r while IFS= read -r line && [ -z "`echo $line | grep -e "^#\+ $version"`" ]
while [ -z "`echo $REPLY | grep -e "^#\+ $version"`" ]
do do
read -r : # do nothing
done done
read -r while IFS= read -r line && [ -z "`echo $line | grep -e "^#\+"`" ]
while [ -z "`echo $REPLY | grep -e "^#\+"`" ]
do do
echo "$REPLY" echo "$line"
read -r
done done
} }