Improved logg display.

This commit is contained in:
Storm Dragon 2024-11-15 18:30:56 -05:00
parent 0fde9df474
commit 60dea14aee

View File

@ -60,11 +60,15 @@ if [[ "$home" == "$remote" ]]; then
fi
dialog --backtitle "Linux Game manager" \
--yesno "Updates are available. Would you like to update now?" -1 -1 --stdout || return
{ git pull
git log '@{1}..' --pretty=format:'%an: %s'; }
# Store the current commit before pulling
local before_pull=$(git rev-parse HEAD)
git pull
# Show changes between the stored commit and current HEAD
git log "$before_pull..HEAD" --pretty=format:'%an: %s'
exit $?
}
# Check architecture compatibility
check_architecture() {
local architecture="$(uname -m)"