mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-07 05:30:11 +02:00
Merge pull request #7834 from bitcoincore-dev/1689267061/e8c11b989/ee55126b5-scripts/check-release-notes.sh
scripts/check-release-notes.sh: fix bash expression
This commit is contained in:
commit
2bb28f7aaf
@ -11,7 +11,7 @@ PR_NUMBER=$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')
|
|||||||
# order for it to be merged it had to pass the check in its base branch. If
|
# order for it to be merged it had to pass the check in its base branch. If
|
||||||
# we're trying to merge this with the Merge Queue, then the PR number will be
|
# we're trying to merge this with the Merge Queue, then the PR number will be
|
||||||
# "gh-readonly-queue" instead.
|
# "gh-readonly-queue" instead.
|
||||||
if [ $PR_NUMBER == "master" ] || [ $PR_NUMBER == "gh-readonly-queue"]; then
|
if [[ $PR_NUMBER == "master" ]] || [[ $PR_NUMBER == "gh-readonly-queue" ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user