bash: avoid failing if direnv is not installed yet.

This commit is contained in:
Julien Palard 2023-12-22 18:17:35 +01:00
parent 10f86665bc
commit f4f9163188
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
1 changed files with 3 additions and 1 deletions

View File

@ -105,7 +105,9 @@ PY_PS1='$(python_prompt "${PY_BLUE_FG}🭮${PY_BLUE_BG}${PY_YELLOW_FG}  %s \e
GIT_PS1='$(git_prompt "${GIT_RED_FG}🭮${GIT_RED_BG}\e[97m  %s \e[0m${GIT_RED_FG}🭬\e[0m")'
PS1="${_TITLE}${_PREV_FAIL}${USERNAME_COLOR}\u\e[0m@${HOSTNAME_COLOR}\H\e[0m:\e[32m\w\e[0m${PY_PS1}${GIT_PS1}\n\$ "
eval "$(direnv hook bash)"
if hash direnv &>/dev/null; then
eval "$(direnv hook bash)"
fi
e()
{