mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-26 08:55:59 +01:00
scripts/check-release-notes.sh: fix bash expression
This commit is contained in:
parent
e8c11b9898
commit
f2b3674b3a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
# we're trying to merge this with the Merge Queue, then the PR number will be
|
||||
# "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
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue