0
0
mirror of https://github.com/yeongpin/cursor-free-vip.git synced 2025-04-24 08:25:23 +00:00

Add main path retrieval for non-Linux systems in get_workbench_cursor_path function

This commit is contained in:
Pin Studios 2025-04-21 14:02:59 +08:00
parent caf996864f
commit c243e9f2f6

View File

@ -243,6 +243,9 @@ def get_workbench_cursor_path(translator=None) -> str:
if config.has_section('LinuxPaths') and config.has_option('LinuxPaths', 'cursor_path'): if config.has_section('LinuxPaths') and config.has_option('LinuxPaths', 'cursor_path'):
base_path = config.get('LinuxPaths', 'cursor_path') base_path = config.get('LinuxPaths', 'cursor_path')
# Get the main path for non-Linux systems or if Linux path wasn't found in the loop
main_path = os.path.join(base_path, paths_map[system]["main"])
if not os.path.exists(main_path): if not os.path.exists(main_path):
raise OSError(translator.get('reset.file_not_found', path=main_path) if translator else f"未找到 Cursor main.js 文件: {main_path}") raise OSError(translator.get('reset.file_not_found', path=main_path) if translator else f"未找到 Cursor main.js 文件: {main_path}")