summaryrefslogtreecommitdiff
path: root/round-robin-bisect.sh
diff options
context:
space:
mode:
Diffstat (limited to 'round-robin-bisect.sh')
-rwxr-xr-xround-robin-bisect.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/round-robin-bisect.sh b/round-robin-bisect.sh
index 506d616a..dca4604e 100755
--- a/round-robin-bisect.sh
+++ b/round-robin-bisect.sh
@@ -573,7 +573,8 @@ if [ x"$first_bad" != x"" ]; then
occurences="$(cat interesting-commits/$current_project | grep "^$first_bad" | sed -e "s/^$first_bad *//" | tr ' ' '\n' | sed "s#^# - #")"
if [ "$(echo "$occurences" | wc -l)" -le 1 ]; then
git_log_level="medium"
- notify_author=$(git show --pretty="%an <%ae>" --no-patch "$first_bad")
+ notify_author=$(git -C $current_project log --pretty="%an <%ae>" -n 1 \
+ "$first_bad")
else
git_log_level="short"
fi