Skip to content
Snippets Groups Projects
Commit aff52dd2 authored by Dylan Baker's avatar Dylan Baker
Browse files

get-pick-list: Add --pretty=medium to the arguments for Cc patches


Because none of them have been picked up for 19.0 due to this bug
being reintroduced.

v2: - Fix fixes tags

Fixes: e6b3a3b2
       ("bin/get-pick-list.sh: handle "typod" usecase.")
Fixes: fac10169
       ("bin/get-pick-list.sh: prefix output with "[stable] "")
Reviewed-by: default avatarAndres Gomez <agomez@igalia.com>
Reviewed-by: default avatarEmil Velikov <emil.velikov@collabora.com>
parent 68a9383c
No related branches found
No related tags found
Loading
......@@ -13,12 +13,12 @@
is_stable_nomination()
{
git show --summary "$1" | grep -q -i -o "CC:.*mesa-stable"
git show --pretty=medium --summary "$1" | grep -q -i -o "CC:.*mesa-stable"
}
is_typod_nomination()
{
git show --summary "$1" | grep -q -i -o "CC:.*mesa-dev"
git show --pretty=medium --summary "$1" | grep -q -i -o "CC:.*mesa-dev"
}
fixes=
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment