mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 893723 - Ignore trailing '+' in Mercurial version string; r=gps
DONTBUILD (NPOTB)
This commit is contained in:
parent
9734a7b4ab
commit
07be66f684
@ -187,7 +187,7 @@ class BaseBootstrapper(object):
|
||||
|
||||
info = self.check_output([hg, '--version']).splitlines()[0]
|
||||
|
||||
match = re.search('version ([^\)]+)', info)
|
||||
match = re.search('version ([^\+\)]+)', info)
|
||||
if not match:
|
||||
print('ERROR: Unable to identify Mercurial version.')
|
||||
return True, False, None
|
||||
|
Loading…
Reference in New Issue
Block a user