Skip to content

Commit e5e5c50

Browse files
committed
fix(ci): wrong BLE readme regex
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 8d11df8 commit e5e5c50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: CI/update/stm32cube.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ def applyBlePatch():
711711
def updateBleReadme(filepath, version):
712712
print(" Updating README.md in ble library")
713713
for line in fileinput.input(filepath, inplace=True):
714-
print(re.sub(r"v\d+.\d+.\d+", version, line), end="")
714+
print(re.sub(r"v\d+.\d+.\d+", f"v{version}", line), end="")
715715

716716

717717
def updateBleLibrary():

0 commit comments

Comments
 (0)