From ec5066988ee8c01be5a6f3fdb7ceb17f3bed10dd Mon Sep 17 00:00:00 2001 From: Uzair Aftab <48220549+Uzaaft@users.noreply.github.com> Date: Fri, 14 Mar 2025 13:10:09 +0100 Subject: [PATCH] fix: Use builtin `source_env_if_exists` for sourcing `.envrc.local` --- .envrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.envrc b/.envrc index 2ca233b93..f92a60c16 100644 --- a/.envrc +++ b/.envrc @@ -5,5 +5,4 @@ if has nix; then use flake fi -# Source an `.envrc.local` if it exists. You can add your custom changes there. -[[ -f .envrc.local ]] && source_env .envrc.local +source_env_if_exists .envrc.local