diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-05-21 10:28:34 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-05-23 09:54:00 -0700 |
commit | 5a639bdb810f89a9ab1018619bd2d8e9cad58a14 (patch) | |
tree | 5907d1ae3778096184022f5b19fa56d81c39a029 /bin | |
parent | ec986241f317222b0d0638095a124edb2e6cb46b (diff) |
bin/bugzilla_mesa.sh: explicitly set the --pretty argument
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Andres Gomez <agomez@igalia.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/bugzilla_mesa.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bugzilla_mesa.sh b/bin/bugzilla_mesa.sh index a8f5305844..9095bc9dee 100755 --- a/bin/bugzilla_mesa.sh +++ b/bin/bugzilla_mesa.sh @@ -23,7 +23,7 @@ echo "<ul>" echo "" # extract fdo urls from commit log -git log $* | grep 'bugs.freedesktop.org/show_bug' | sed -e $trim_before | sort -n -u | sed -e $use_after |\ +git log --pretty=medium $* | grep 'bugs.freedesktop.org/show_bug' | sed -e $trim_before | sort -n -u | sed -e $use_after |\ while read url do id=$(echo $url | cut -d'=' -f2) |