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