plugins: Fix shellcheck warnings on already linted files

This commit is contained in:
Noah Gorny
2021-09-09 11:18:17 +03:00
parent 9ea60020ae
commit c6f6d8c27a
2 changed files with 2 additions and 2 deletions

View File

@@ -309,7 +309,7 @@ function git-changelog() {
# shellcheck disable=SC2162
git log "$1" --no-merges --format="%cd" --date=short | sort -u -r | while read DATE; do
echo
echo [$DATE]
echo "[$DATE]"
git log --no-merges --format=" * (%h) %s by %an <%ae>" --since="$DATE 00:00:00" --until="$DATE 24:00:00"
NEXT=$DATE
done