fix(install): ensure proper exit after running doctor command

This commit is contained in:
UncleCode
2025-02-11 19:48:23 +08:00
parent 91a5fea11f
commit 69705df0b3

View File

@@ -139,4 +139,5 @@ def doctor():
"""Entry point for the doctor command"""
import asyncio
return asyncio.run(run_doctor())
asyncio.run(run_doctor())
sys.exit(0)