diff options
author | Ben Sima <ben@bsima.me> | 2024-04-09 19:53:59 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-04-10 19:56:46 -0400 |
commit | db6dd08ea43290208d3f574ccba3506b0f76d1ce (patch) | |
tree | 16d192d2761c551fbc7793c21f8501529cbbca08 /.envrc | |
parent | 28a40c430e989c5bc949e074bceda6b891902287 (diff) |
Only load .envrc.local if present
Otherwise, every direnv reload will print an error. Its harmless, but still
annoying.
Diffstat (limited to '.envrc')
-rw-r--r-- | .envrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,6 +47,6 @@ git config --local branchless.test.alias.ci 'git clean -ffdx; eval $(direnv export bash); Biz/Ci.sh' # # load local settings - . ./.envrc.local + [[ -f ./.envrc.local ]] && . ./.envrc.local || : ## tips.sh |