1
0
mirror of https://github.com/Prowlarr/Indexers.git synced 2025-12-20 02:58:28 +00:00

New: log commit message during cherry-pick loop

This commit is contained in:
ServarrAdmin
2025-08-17 21:27:47 -05:00
parent c9ad0e2b54
commit 7754efbfb0

View File

@@ -536,6 +536,12 @@ pull_cherry_and_merge() {
fi
fi
log "INFO" "cherrypicking Jackett commit [$pick_commit]"
# Get and log the commit message for this specific commit
pick_commit_message=$(git log --format=%s -n1 "$pick_commit")
pick_commit_message_truncated=$(echo "$pick_commit_message" | cut -c1-80)
log "INFO" "Commit message: '$pick_commit_message_truncated'"
git cherry-pick --no-commit --rerere-autoupdate --allow-empty --keep-redundant-commits "$pick_commit"
# Detect new indexers from this commit before conflict resolution