diff options
author | Dylan Baker <[email protected]> | 2019-02-12 14:03:21 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-02-13 08:59:30 -0800 |
commit | aff52dd2c61eb8d1b03cebbcca7e070ffa48afdf (patch) | |
tree | 2c7376c3b73972be684a172c904dd7255670f7a5 /bin | |
parent | 68a9383c6fbe45c5c84254a9a41b79c8d40346b9 (diff) |
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 <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'bin')
-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= |