fix: Sorting of commits in Release Notes script was inversed.
This commit is contained in:
parent
e69d6d60eb
commit
385ee1c263
1 changed files with 2 additions and 2 deletions
|
|
@ -36,9 +36,9 @@ done
|
||||||
|
|
||||||
# Adjust sort order based on the flag
|
# Adjust sort order based on the flag
|
||||||
if [ "${newestFirst}" = true ]; then
|
if [ "${newestFirst}" = true ]; then
|
||||||
sortOrder="tail -r"
|
|
||||||
else
|
|
||||||
sortOrder="cat"
|
sortOrder="cat"
|
||||||
|
else
|
||||||
|
sortOrder="tail -r"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get tags sorted by creation date
|
# Get tags sorted by creation date
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue