shell/direnv: enable zsh
Some checks failed
Build / Lint Code Base (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
Felix Buehler 2026-01-17 00:00:14 +01:00
parent 1c9d2e7eba
commit 2919c8695b

View file

@ -1,5 +1,9 @@
#!/usr/bin/env bash
if command -v direnv >/dev/null; then
if [ -n "$BASH_VERSION" ]; then
eval "$(direnv hook bash)"
elif [ -n "$ZSH_VERSION" ]; then
eval "$(direnv hook zsh)"
fi
fi