fix command in cherry-picker script (#8738)

This commit is contained in:
Alvin Huang 2020-09-23 09:59:17 -04:00 committed by GitHub
parent f6fafe0ed1
commit 93645e7a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ function get_latest_backport_label {
fi
latest_backport_label=$(echo "$resp" | jq -r '.[] | select(.name | startswith("backport/")) | .name' | sort -rV | head -n1)
echo"$latest_backport_label"
echo "$latest_backport_label"
return 0
}
@ -181,4 +181,4 @@ done
if [ "$backport_failures" -ne 0 ]; then
echo "$backport_failures backports failed"
exit 1
fi
fi