From 2fefb56b8cc89beabcc0f3b8e1fd82cbd15748b2 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 8 Aug 2026 13:23:16 -0400 Subject: [PATCH] Say which revision the pull restarted into The restart line named no version, so a log showing one gave no way to tell what the rest of the run actually executed. --- git_pull_execute.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_pull_execute.sh b/git_pull_execute.sh index 664a215..1298001 100755 --- a/git_pull_execute.sh +++ b/git_pull_execute.sh @@ -317,7 +317,7 @@ else if [[ -z "${VV_PULL_REEXECED:-}" ]]; then _vv_self_now="$(md5sum "$_VV_SELF" 2>/dev/null | cut -d' ' -f1)" if [[ -n "$_vv_self_now" && -n "$_VV_SELF_SUM" && "$_vv_self_now" != "$_VV_SELF_SUM" ]]; then - echo " Pull updated this script — restarting so the rest of the run uses it" + echo " Pull updated this script — restarting at $(git rev-parse --short HEAD 2>/dev/null || echo 'unknown') so the rest of the run uses it" _release_all_locks export VV_PULL_REEXECED=1 exec bash "$_VV_SELF" "${_VV_SELF_ARGS[@]}"