File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -711,7 +711,7 @@ def applyBlePatch():
711
711
def updateBleReadme (filepath , version ):
712
712
print (" Updating README.md in ble library" )
713
713
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 = "" )
715
715
716
716
717
717
def updateBleLibrary ():
@@ -723,7 +723,7 @@ def updateBleLibrary():
723
723
ble_path = repo_local_path / repo_ble_name / "src" / "utility" / "STM32Cube_FW"
724
724
cube_version = cube_versions ["WB" ]
725
725
726
- ble_commit_msg = f"Update STM32Cube_FW from Cube version { cube_version } "
726
+ ble_commit_msg = f"chore: update STM32Cube_FW from Cube version { cube_version } "
727
727
728
728
for file in ble_file_list :
729
729
file_path = Path (cube_path / file )
You can’t perform that action at this time.
0 commit comments