We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7cda7ce + b1f9271 commit 9fb54b7Copy full SHA for 9fb54b7
platform/windows/detect.py
@@ -666,7 +666,7 @@ def get_ar_version(env):
666
print_warning("Couldn't check version of `ar`.")
667
return ret
668
669
- match = re.search(r"GNU ar \(GNU Binutils\) (\d+)\.(\d+)(:?\.(\d+))?", output)
+ match = re.search(r"GNU ar \(GNU Binutils\) (\d+)\.(\d+)(?:\.(\d+))?", output)
670
if match:
671
ret["major"] = int(match[1])
672
ret["minor"] = int(match[2])
0 commit comments