diff options
| author | jason | 2024-07-16 22:11:29 -0600 |
|---|---|---|
| committer | jason | 2024-07-16 22:11:29 -0600 |
| commit | ffc2159dab43e2a6a7c327b8272b64823289a706 (patch) | |
| tree | b40918865b4f23359ad1085d7cb60aa9f0c6d67e | |
| parent | 187fe3185d4c30fb41c5819dfecaed8feec59649 (diff) | |
| download | dotfiles-ffc2159dab43e2a6a7c327b8272b64823289a706.tar.gz dotfiles-ffc2159dab43e2a6a7c327b8272b64823289a706.zip | |
disable kerl fix for osx. it is not broken, and paste doesnt work
| -rw-r--r-- | bash/.bashrc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index 6ce988c..3884629 100644 --- a/bash/.bashrc +++ b/bash/.bashrc | |||
| @@ -54,7 +54,9 @@ fi | |||
| 54 | KERL=`which kerl 2> /dev/null` | 54 | KERL=`which kerl 2> /dev/null` |
| 55 | if [ -x "$KERL" ]; then | 55 | if [ -x "$KERL" ]; then |
| 56 | # kerl breaks the manpath | 56 | # kerl breaks the manpath |
| 57 | export MANPATH=$(grep manpath /etc/man.conf | awk '{ print $2 }' | paste -s -d:) | 57 | if [ "$OS_NAME" != "Darwin" ]; then |
| 58 | export MANPATH=$(grep manpath /etc/man.conf | awk '{ print $2 }' | paste -s -d:) | ||
| 59 | fi | ||
| 58 | if [ -f $HOME/.config/bash_completions/kerl ]; then | 60 | if [ -f $HOME/.config/bash_completions/kerl ]; then |
| 59 | . $HOME/.config/bash_completions/kerl | 61 | . $HOME/.config/bash_completions/kerl |
| 60 | fi | 62 | fi |