fix: Use tformat, so that while loop doesn't ignore last line

This commit is contained in:
demenik
2025-12-02 19:17:28 +01:00
parent ebb20dab03
commit 23233cace7

View File

@@ -85,7 +85,7 @@ while IFS="|" read -r hash subject; do
others="${others}\n${line}"
fi
done < <(git log --no-merges --pretty=format:"%H|%s" "$BASE_BRANCH..$TARGET_BRANCH")
done < <(git log --no-merges --pretty=tformat:"%H|%s" "$BASE_BRANCH..$TARGET_BRANCH")
if [ -n "$feats" ]; then
echo -e "\n- **New Features:**$feats"