diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-15 02:27:00 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-03 14:12:39 -0700 |
commit | 1ddda1b321a102b31bcddc0b1cc23fe3449533c6 (patch) | |
tree | 3f7b6d1c69162eaded9b2e2074b3dc4dbe3ec1da /tools/buildman | |
parent | 58d818f19f349fc17a3907b2be62a6d2d2dc242b (diff) | |
download | u-boot-imx-1ddda1b321a102b31bcddc0b1cc23fe3449533c6.zip u-boot-imx-1ddda1b321a102b31bcddc0b1cc23fe3449533c6.tar.gz u-boot-imx-1ddda1b321a102b31bcddc0b1cc23fe3449533c6.tar.bz2 |
patman: Use the full commit hash for 'git checkout'
Even with the initial 8 characeters of the hash we will sometimes get a
collision. Use the full hash.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 6a4de36..fb79a1e 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -70,7 +70,7 @@ def ShowActions(series, why_selected, boards_selected, builder, options): if commits: for upto in range(0, len(series.commits), options.step): commit = series.commits[upto] - print ' ', col.Color(col.YELLOW, commit.hash, bright=False), + print ' ', col.Color(col.YELLOW, commit.hash[:8], bright=False), print commit.subject print for arg in why_selected: |