mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Merge c86f546f98 into merged_master (Bitcoin PR bitcoin/bitcoin#23458)
This commit is contained in:
commit
e34dded367
1 changed files with 6 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue