From: Andres Gomez Date: Fri, 11 Jan 2019 14:43:27 +0000 (+0200) Subject: bin/get-pick-list.sh: fix redirection in sh X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ec9ab80b870efffb5ba7c7a00b86b2df729ec6d;p=mesa.git bin/get-pick-list.sh: fix redirection in sh "&>" is bash specific. Fixes: e0dbfc99537 ("bin/get-pick-list.sh: warn when commit lists invalid sha") Cc: Juan A. Suarez Cc: Eric Engestrom Cc: Dylan Baker Cc: Emil Velikov Signed-off-by: Andres Gomez Reviewed-by: Eric Engestrom Reviewed-by: Emil Velikov Reviewed-by: Juan A. Suarez --- diff --git a/bin/get-pick-list.sh b/bin/get-pick-list.sh index e7a2d0dce40..15f0e7d4a34 100755 --- a/bin/get-pick-list.sh +++ b/bin/get-pick-list.sh @@ -44,7 +44,7 @@ is_sha_nomination() # Treat only the current line id=`echo "$fixes" | tail -n $fixes_count | head -n 1 | cut -d : -f 2` fixes_count=$(($fixes_count-1)) - if ! git show $id &>/dev/null; then + if ! git show $id >/dev/null 2>&1; then echo WARNING: Commit $1 lists invalid sha $id fi done