We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git log
1 parent 77a2f5d commit 095f077Copy full SHA for 095f077
ci/lint/06_script.sh
@@ -8,8 +8,8 @@ export LC_ALL=C
8
9
GIT_HEAD=$(git rev-parse HEAD)
10
if [ -n "$CIRRUS_PR" ]; then
11
- COMMIT_RANGE="$CIRRUS_BASE_SHA..$GIT_HEAD"
12
- test/lint/commit-script-check.sh $COMMIT_RANGE
+ COMMIT_RANGE="${CIRRUS_BASE_SHA}..$GIT_HEAD"
+ test/lint/commit-script-check.sh "$COMMIT_RANGE"
13
fi
14
export COMMIT_RANGE
15
@@ -34,5 +34,7 @@ if [ "$CIRRUS_REPO_FULL_NAME" = "bitcoin/bitcoin" ] && [ "$CIRRUS_PR" = "" ] ; t
34
./contrib/verify-commits/verify-commits.py;
35
36
37
-echo
38
-git log --no-merges --oneline $COMMIT_RANGE
+if [ -n "$COMMIT_RANGE" ]; then
+ echo
39
+ git log --no-merges --oneline "$COMMIT_RANGE"
40
+fi
0 commit comments