Skip to content

Commit 7f5b7cd

Browse files
ci/check-cherry-picks: never use a pager
In a small terminal window this would just stop running after each commit until you exit the pager. That's not what we want when running it locally. (cherry picked from commit 245b1c1)
1 parent 63b1cc8 commit 7f5b7cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/check-cherry-picks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ while read -r new_commit_sha ; do
5252
if git merge-base --is-ancestor "$original_commit_sha" "$picked_branch" ; then
5353
echo "$original_commit_sha present in branch $picked_branch"
5454

55-
range_diff_common='git range-diff
55+
range_diff_common='git --no-pager range-diff
5656
--no-notes
5757
--creation-factor=100
5858
'"$original_commit_sha~..$original_commit_sha"'

0 commit comments

Comments
 (0)