diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-02-12 14:03:21 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-02-13 14:14:35 -0800 |
commit | b4419fdba50856b5963f2728d819433130b30888 (patch) | |
tree | 1a3ecb689bbd3acaec87c36a452b94060d321782 | |
parent | 7ac15d9e4248ddafba8189e5dfcacddc1af367e2 (diff) | |
download | mesa-b4419fdba50856b5963f2728d819433130b30888.tar.gz |
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: e6b3a3b2014413366110f6deeced8095e7262b1d
("bin/get-pick-list.sh: handle "typod" usecase.")
Fixes: fac10169bbad2da918ef07a62c01e0b321508cfe
("bin/get-pick-list.sh: prefix output with "[stable] "")
Reviewed-by: Andres Gomez <agomez@igalia.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
(cherry picked from commit aff52dd2c61eb8d1b03cebbcca7e070ffa48afdf)
-rwxr-xr-x | bin/get-pick-list.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index 15f0e7d4a34..8fa4f438771 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -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= |