a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
10 lines
256 B
Bash
10 lines
256 B
Bash
source_env ../.envrc
|
|
|
|
if type lorri &>/dev/null; then
|
|
echo "direnv: using lorri from PATH ($(type -p lorri))"
|
|
eval "$(lorri direnv)"
|
|
else
|
|
# fall back to using direnv's builtin nix support
|
|
# to prevent bootstrapping problems.
|
|
use nix
|
|
fi
|