8 lines
125 B
Bash
8 lines
125 B
Bash
# Loading direnv bash hook
|
|
|
|
if command -v direnv > /dev/null; then
|
|
eval "$(direnv hook bash)"
|
|
else
|
|
echo "SKIP direnv"
|
|
fi
|