diff options
author | Martin Peres <martin.peres@linux.intel.com> | 2015-09-07 19:51:42 +0300 |
---|---|---|
committer | Martin Peres <martin.peres@linux.intel.com> | 2015-09-07 19:51:42 +0300 |
commit | 67549424aa38579c0eb5becb00dc3ef1d57dfed4 (patch) | |
tree | 01569d95221066f0291db1ca35db01098383c3c4 | |
parent | 2d48618d29f8a1a101c04a277362fe3fd330080a (diff) |
core: do not repeat commits in the commit_list
This allows adding test results from a later run
-rwxr-xr-x | ezbench.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |