diff options
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -602,7 +602,8 @@ def _CheckGitVersion(): | |||
602 | 602 | ||
603 | if ver_act < MIN_GIT_VERSION: | 603 | if ver_act < MIN_GIT_VERSION: |
604 | need = '.'.join(map(str, MIN_GIT_VERSION)) | 604 | need = '.'.join(map(str, MIN_GIT_VERSION)) |
605 | print('fatal: git %s or later required' % need, file=sys.stderr) | 605 | print('fatal: git %s or later required; found %s' % (need, ver_act.full), |
606 | file=sys.stderr) | ||
606 | raise CloneFailure() | 607 | raise CloneFailure() |
607 | 608 | ||
608 | 609 | ||