You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.debug("Skipping bun installation as it is already installed.")
return
I suppose this should be changed as below:
# Skip if bun is already installed.bun_path=get_config().bun_pathifbun_path!=constants.Bun.DEFAULT_PATHoros.path.exists(bun_path) andget_bun_version() ==version.parse(
constants.Bun.VERSION
):
console.debug("Skipping bun installation as it is already installed.")
return
The text was updated successfully, but these errors were encountered:
Describe the bug
Reflex installs Bun even though
BUN_PATH
is set.To Reproduce
constants.Bun.VERSION
.BUN_PATH
as the installed bun path.reflex init
.Expected behavior
The installation of Bun would be skipped.
Additional context
The condition of Bun installation seems incorrect.
Current implementation:
reflex/reflex/utils/prerequisites.py
Lines 795 to 800 in b01c4b6
I suppose this should be changed as below:
The text was updated successfully, but these errors were encountered: