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 00e5238 commit 67275f8Copy full SHA for 67275f8
scripts/swift_update_package_checksum.py
@@ -65,7 +65,6 @@ def run(new_checksum: str = None, new_tag: str = None):
65
regex = re.compile(f'(let[\s]+{current_variable_name}[\s]*=[\s]*)(.*)')
66
67
previous_value = regex.search(package_file).group(2)
68
- # new_package_file = checksum_regex.sub(f'\g<1>"{new_checksum}"', package_file)
69
package_file = package_file.replace(previous_value, f'"{new_value}"')
70
71
with open(package_file_path, "w") as f:
0 commit comments