From dc8014b19c2d9dbba65a126f1411c1072c596da5 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Mon, 10 Feb 2025 18:49:14 +0100 Subject: [PATCH] revert some changes for now --- reflex/utils/prerequisites.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/reflex/utils/prerequisites.py b/reflex/utils/prerequisites.py index fbda615bce..8047e12560 100644 --- a/reflex/utils/prerequisites.py +++ b/reflex/utils/prerequisites.py @@ -1309,10 +1309,7 @@ def validate_bun(): bun_path = path_ops.get_bun_path() if bun_path is None: - console.error( - "Could not find bun. Make sure you have bun installed or run `reflex init` to install it." - ) - raise typer.Exit(1) + return if not path_ops.samefile(bun_path, constants.Bun.DEFAULT_PATH): console.info(f"Using custom Bun path: {bun_path}")