From f28d9ff7a6c79e9a74993314d40f773c04689e9a Mon Sep 17 00:00:00 2001 From: andryyy Date: Fri, 9 Oct 2020 11:04:42 +0200 Subject: [PATCH] [Update] Show commits on update check --- update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update.sh b/update.sh index f23bbcc7..696fd75c 100755 --- a/update.sh +++ b/update.sh @@ -124,6 +124,7 @@ while (($#)); do fi if [[ -z $(git log HEAD --pretty=format:"%H" | grep "${LATEST_REV}") ]]; then echo "Updated code is available." + git log --date=short --pretty=format:"%ad - %s" $(git rev-parse --short HEAD)..origin/master exit 0 else echo "No updates available."