blob: 6145dfe22530f66ce098af1d53d2f155e7baac8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- mode: sh -*-
if [ -f .envrc-git-init ]; then
source_env_if_exists .envrc-git-init || source .envrc-git-init
fi
if [ -f .envrc-local ]; then
source_env_if_exists .envrc-local || source .envrc-local
elif [ -f .envrc-local_ ]; then
source_env_if_exists .envrc-local_ || source .envrc-local_
fi
if [ -f .envrc-nix ]; then
source_env_if_exists .envrc-nix || source .envrc-nix
fi
|