Merge branch '2.1.x'

This commit is contained in:
Phillip Webb 2019-06-18 09:50:34 -07:00
commit 1513ed1b09
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ if [[ $current = $latest ]]; then
fi
existing_tasks=$( curl -s https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/issues\?labels\=type:%20task\&state\=open\&creator\=spring-buildmaster )
existing_jdk_issues=$( echo "$existing_tasks" | jq -c --arg TITLE $ISSUE_TITLE '.[] | select(.title==$TITLE)' )
existing_jdk_issues=$( echo "$existing_tasks" | jq -c --arg TITLE "$ISSUE_TITLE" '.[] | select(.title==$TITLE)' )
if [[ ${existing_jdk_issues} = "" ]]; then
curl \