aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorjason2020-12-02 23:07:58 +0000
committerjason2020-12-02 23:07:58 +0000
commit00ebaa34577d51dbc7571fdd5b261c6696d37018 (patch)
tree1e49dccc53609b0727c82f8ff52fa5cb429edc48 /bash
parentb30d75f8aa2c2dfc4069863ca04f77722095222d (diff)
downloaddotfiles-00ebaa34577d51dbc7571fdd5b261c6696d37018.tar.gz
dotfiles-00ebaa34577d51dbc7571fdd5b261c6696d37018.zip
fix bug with direnv check
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index ebab135..d824461 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -72,7 +72,7 @@ export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
72 72
73# Enable direnv (https://github.com/direnv/direnv/) 73# Enable direnv (https://github.com/direnv/direnv/)
74DIRENV=`which direnv` 74DIRENV=`which direnv`
75if [ -x $DIRENV ]; then 75if [[ -x $DIRENV ]]; then
76 eval "$(direnv hook bash)" 76 eval "$(direnv hook bash)"
77fi 77fi
78 78