1
0
Fork 0

🔧 chore(renovate): update version file path

- fix variable name from old_version to old_ver_dir in version file path construction
This commit is contained in:
pooneyy 2025-10-12 12:52:53 +08:00
parent 889b00edda
commit 19f8a7f43e
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ def main():
if safe_rename_directory(old_path, new_path):
# 更新版本标记文件
version_file = f"apps/{app_name}/{old_version}.version"
version_file = f"apps/{app_name}/{old_ver_dir}.version"
if not write_version_file(version_file, new_version):
print("版本标记文件更新失败,但目录重命名成功")
else: