From 0fde9df47450b13171d59ba6eae0aac278a10bd1 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 15 Nov 2024 18:17:12 -0500 Subject: [PATCH] First attempt at showing logs after update did not work, try putting it in a brace group. --- linux-game-manager.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 5bcf911..3dae372 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -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 $? }