diff --git a/.envrc b/.envrc index d2e4c1b0ca92..752703e98339 100644 --- a/.envrc +++ b/.envrc @@ -34,6 +34,12 @@ else export INIT_WAIT_SEC="2" fi +# Source the gitignored .envrc.local if it exists. +if test -f .envrc.local; then + watch_file .envrc.local + source .envrc.local +fi + # (Example env vars if you're not using the make commands, i.e. the config files, to set up query engine tests) # export TEST_RUNNER="direct" # export TEST_CONNECTOR="postgres" @@ -50,9 +56,3 @@ then use flake fi fi - -# Source the gitignored .envrc.local if it exists. -if test -f .envrc.local; then - watch_file .envrc.local - source .envrc.local -fi