[tool] bisect.dart fix prints

GitHub expects the "first" and "last" hash of a commit range the
other way around.
This fixes links when the output is pasted into GitHub issues.

Change-Id: I1c22490b69bc6bec9c0d65307ee80a6b15e96a6c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/322661
Reviewed-by: Martin Kustermann <kustermann@google.com>
Commit-Queue: Daco Harkes <dacoharkes@google.com>
This commit is contained in:
Daco Harkes 2023-08-25 09:14:40 +00:00 committed by Commit Queue
parent 7e218c4e94
commit 83d058e1ac

View file

@ -184,7 +184,7 @@ Future<List<String>> _commitHashesInRange(String commitHashStart,
arguments: [
'log',
'--pretty=format:"%h"',
'$commitHashStart...$commitHashEnd',
'$commitHashEnd...$commitHashStart',
],
captureOutput: true,
logger: logger,