From 6aa325a4b1d96c5084479acf38a588144656d08d Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Thu, 2 Jan 2025 10:41:52 +0800 Subject: [PATCH] perf: no exit after files created --- main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.py b/main.py index 31441cfe..c297c2a4 100644 --- a/main.py +++ b/main.py @@ -49,12 +49,10 @@ async def main_entry(loop: asyncio.AbstractEventLoop): generated_files = await files.generate_files() if generated_files: - print("以下文件不存在,已自动生成,请按需修改配置文件后重启:") + print("以下文件不存在,已自动生成:") for file in generated_files: print("-", file) - sys.exit(0) - from pkg.core import boot await boot.main(loop)