misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
evilsocket 2018-02-24 23:17:57 +01:00
commit 5364a75b26
2 changed files with 4 additions and 2 deletions

View file

@ -6,10 +6,10 @@ MISC=()
echo "@ Fetching remote tags ..."
git fetch --tags > /dev/null
# git fetch --tags > /dev/null
CURTAG=$(git describe --tags --abbrev=0)
OUTPUT=$(git log $CURTAG..HEAD --oneline)
OUTPUT=$(git log v2.0.0RC1..HEAD --oneline)
IFS=$'\n' LINES=($OUTPUT)
for LINE in "${LINES[@]}"; do