summaryrefslogtreecommitdiffstats
path: root/repo
diff options
context:
space:
mode:
Diffstat (limited to 'repo')
-rwxr-xr-xrepo3
1 files changed, 2 insertions, 1 deletions
diff --git a/repo b/repo
index 6670c0d3..2f4601a7 100755
--- a/repo
+++ b/repo
@@ -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