Merge c86f546f98 into merged_master (Bitcoin PR bitcoin/bitcoin#23458)

This commit is contained in:
Byron Hambly 2023-05-17 11:53:56 +00:00
commit e34dded367

View file

@ -8,8 +8,8 @@ export LC_ALL=C
GIT_HEAD=$(git rev-parse HEAD)
if [ -n "$CIRRUS_PR" ]; then
COMMIT_RANGE="$CIRRUS_BASE_SHA..$GIT_HEAD"
test/lint/commit-script-check.sh $COMMIT_RANGE
COMMIT_RANGE="${CIRRUS_BASE_SHA}..$GIT_HEAD"
test/lint/commit-script-check.sh "$COMMIT_RANGE"
fi
export COMMIT_RANGE
@ -34,5 +34,7 @@ if [ "$CIRRUS_REPO_FULL_NAME" = "bitcoin/bitcoin" ] && [ "$CIRRUS_PR" = "" ] ; t
./contrib/verify-commits/verify-commits.py;
fi
echo
git --no-pager log --no-merges --oneline $COMMIT_RANGE
if [ -n "$COMMIT_RANGE" ]; then
echo
git --no-pager log --no-merges --oneline "$COMMIT_RANGE"
fi