From 24d15acae6cbf81cfe203dacafce7e80a561a977 Mon Sep 17 00:00:00 2001 From: Elijah Ahianyo Date: Fri, 3 May 2024 12:14:22 -0700 Subject: [PATCH] Windows Pin Version followup (Use Windows Install Link) (#3193) --- reflex/utils/prerequisites.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reflex/utils/prerequisites.py b/reflex/utils/prerequisites.py index b2fb3946e..32bcc5a93 100644 --- a/reflex/utils/prerequisites.py +++ b/reflex/utils/prerequisites.py @@ -746,8 +746,8 @@ def install_bun(): [ "powershell", "-c", - f"irm {constants.Bun.INSTALL_URL}.ps1|iex", - ], # TODO: change install url to constants.BUN.WINDOWS_INSTALL_URL + f"irm {constants.Bun.WINDOWS_INSTALL_URL}|iex", + ], env={ "BUN_INSTALL": constants.Bun.ROOT_PATH, "BUN_VERSION": constants.Bun.VERSION,