Redact packse version in snapshots follow-up (#5563)

I thought i had this included in #5483 but i had it on the wrong branch.
This commit is contained in:
konsti 2024-07-29 17:22:20 +02:00 committed by GitHub
parent 0f87d174b9
commit 194904b340
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 262 additions and 3 deletions

View file

@ -271,7 +271,7 @@ def update_common_mod_rs(packse_version: str):
assert (
len(url_matcher.findall(test_common)) == 1
), f"PACKSE_VERSION not found in {TESTS_COMMON_MOD_RS}"
test_common = url_matcher.sub(packse_version, test_common)
test_common = url_matcher.sub(build_vendor_links_url, test_common)
TESTS_COMMON_MOD_RS.write_text(test_common)