First attempt at showing logs after update did not work, try putting it in a brace group.

This commit is contained in:
Storm Dragon 2024-11-15 18:17:12 -05:00
parent e76066f8d1
commit 0fde9df474

View File

@ -60,8 +60,8 @@ 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'
{ git pull
git log '@{1}..' --pretty=format:'%an: %s'; }
exit $?
}