commit | 16191347205deab1bb255b8395cb72419793210d | [log] [tgz] |
---|---|---|
author | Shawn O. Pearce <sop@google.com> | Tue Oct 28 08:33:34 2008 -0700 |
committer | Shawn O. Pearce <sop@google.com> | Tue Oct 28 08:44:18 2008 -0700 |
tree | 29763cd7c84fdb1058b82f3250ef27120f890b3a | |
parent | 7efd1a5b231d70fc8c1d0986e896e9accb7a22a0 [diff] [blame] |
Added missing wait after git-version call in wrapper Signed-off-by: Shawn O. Pearce <sop@google.com>
diff --git a/repo b/repo index 18d0d7f..d59f016 100755 --- a/repo +++ b/repo
@@ -202,6 +202,7 @@ proc = subprocess.Popen(cmd, stdout=subprocess.PIPE) ver_str = proc.stdout.read().strip() proc.stdout.close() + proc.wait() if not ver_str.startswith('git version '): print >>sys.stderr, 'error: "%s" unsupported' % ver_str