diff options
| author | jason | 2020-12-02 23:07:58 +0000 |
|---|---|---|
| committer | jason | 2020-12-02 23:07:58 +0000 |
| commit | 00ebaa34577d51dbc7571fdd5b261c6696d37018 (patch) | |
| tree | 1e49dccc53609b0727c82f8ff52fa5cb429edc48 /bash | |
| parent | b30d75f8aa2c2dfc4069863ca04f77722095222d (diff) | |
| download | dotfiles-00ebaa34577d51dbc7571fdd5b261c6696d37018.tar.gz dotfiles-00ebaa34577d51dbc7571fdd5b261c6696d37018.zip | |
fix bug with direnv check
Diffstat (limited to 'bash')
| -rw-r--r-- | bash/.bashrc | 2 |
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/) |
| 74 | DIRENV=`which direnv` | 74 | DIRENV=`which direnv` |
| 75 | if [ -x $DIRENV ]; then | 75 | if [[ -x $DIRENV ]]; then |
| 76 | eval "$(direnv hook bash)" | 76 | eval "$(direnv hook bash)" |
| 77 | fi | 77 | fi |
| 78 | 78 | ||