mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
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.
This commit is contained in:
parent
2fea2bbf52
commit
245b1c1c48
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ while read -r new_commit_sha ; do
|
|||
if git merge-base --is-ancestor "$original_commit_sha" "$picked_branch" ; then
|
||||
echo " ✔ $original_commit_sha present in branch $picked_branch"
|
||||
|
||||
range_diff_common='git range-diff
|
||||
range_diff_common='git --no-pager range-diff
|
||||
--no-notes
|
||||
--creation-factor=100
|
||||
'"$original_commit_sha~..$original_commit_sha"'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue