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 c69d433 commit 29cee8fCopy full SHA for 29cee8f
scripts/update_bazel_workspace.py
@@ -64,7 +64,7 @@ def update_module_version(version):
64
with open(BAZEL_MODULE_FILE, 'r') as f:
65
content = f.read()
66
67
- pattern = '(module\(\s*name = "emsdk",\s*version = )"\d+.\d+.\d+",\n\)'
+ pattern = r'(module\(\s*name = "emsdk",\s*version = )"\d+.\d+.\d+",\n\)'
68
# Verify that the pattern exists in the input since re.sub will
69
# will succeed either way.
70
assert re.search(pattern, content)
0 commit comments