Reorganize the way notes are shown after updates so that they hopefully appear oldest to newest.

This commit is contained in:
Storm Dragon 2024-12-18 04:52:34 -05:00
parent fad25d35ec
commit 54ce9754fe

View File

@ -95,7 +95,7 @@ fi
dialog --backtitle "Audiogame Manager" \ dialog --backtitle "Audiogame Manager" \
--yesno "Updates are available. Would you like to update now?" -1 -1 --stdout || return --yesno "Updates are available. Would you like to update now?" -1 -1 --stdout || return
{ git pull { git pull
git log '@{1}..' --pretty=format:'%an: %s'; } git log '@{1}..' --pretty=format:'%an: %s' | tac; }
exit $? exit $?
} }