From 69705df0b350bb07abf97f6fc615ea65483acc03 Mon Sep 17 00:00:00 2001 From: UncleCode Date: Tue, 11 Feb 2025 19:48:23 +0800 Subject: [PATCH] fix(install): ensure proper exit after running doctor command --- crawl4ai/install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crawl4ai/install.py b/crawl4ai/install.py index 05179a71..71e97eee 100644 --- a/crawl4ai/install.py +++ b/crawl4ai/install.py @@ -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)