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.
1 parent 9028e80 commit 94d05bfCopy full SHA for 94d05bf
update.py
@@ -68,8 +68,7 @@ def call(cmd, split=True):
68
raise RuntimeError("Error parsing matlab release page")
69
if "glnxa64" not in link:
70
raise RuntimeError("Error parsing matlab release page link")
71
- match = rel_re.search(link)
72
- if match:
+ if match := rel_re.search(link):
73
mcr_ver = "{}.{}".format(mcr_ver, match.groups()[0])
74
dockers.append((mcr_name, mcr_ver, link))
75
0 commit comments