From c04d9d270d2b9da1b8623086e699bbfbeea0282d Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Fri, 31 May 2024 17:44:28 -0700 Subject: [PATCH] More bootstrap fixes --- scripts/env.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/env.sh b/scripts/env.sh index 95051d8877..c0b2e8cfb1 100755 --- a/scripts/env.sh +++ b/scripts/env.sh @@ -7,6 +7,9 @@ if [[ "${CI:-}" == "1" || "${CI:-}" == "true" ]]; then export PATH="$BUN_INSTALL/bin:$PATH" export PATH="$(brew --prefix llvm@16)/bin:$PATH" fi + if [ -f ~/.bashrc ]; then + source ~/.bashrc + fi fi # this is the environment script for building bun's dependencies