fix changelog retriever file

This commit is contained in:
InsanusMokrassar 2020-10-03 15:46:18 +06:00
parent 5f9cb25e18
commit 9824bf4297
1 changed files with 9 additions and 12 deletions

21
changelog_info_retriever Normal file → Executable file
View File

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