Skip to content

Commit 2e75489

Browse files
committed
fix(stm32cube): wrong substitution for CubeWB version
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 8ff274a commit 2e75489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CI/update/stm32cube.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ def applyBlePatch():
718718
def updateBleReadme(filepath, version):
719719
print(" Updating README.md in ble library")
720720
for line in fileinput.input(filepath, inplace=True):
721-
print(re.sub(r"v\d+.\d+.\d+", f"v{version}", line), end="")
721+
print(re.sub(r"v\d+.\d+.\d+", f"{version}", line), end="")
722722

723723

724724
def updateBleLibrary():

0 commit comments

Comments
 (0)