From 67549424aa38579c0eb5becb00dc3ef1d57dfed4 Mon Sep 17 00:00:00 2001 From: Martin Peres Date: Mon, 7 Sep 2015 19:51:42 +0300 Subject: core: do not repeat commits in the commit_list This allows adding test results from a later run --- ezbench.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ezbench.sh b/ezbench.sh index a93f0eb..4c84ad4 100755 --- a/ezbench.sh +++ b/ezbench.sh @@ -314,7 +314,10 @@ do else git reset --hard $commit > /dev/null git show --format="%Cblue%h%Creset %Cgreen%s%Creset" -s - git show --format="%h %s" -s >> $commitListLog + if [ -z "`grep ^$commit $commitListLog 2> /dev/null`" ] + then + git show --format="%h %s" -s >> $commitListLog + fi git format-patch HEAD~ --format=fuller --stdout > $logsFolder/${commit}.patch fi -- cgit v1.2.3