aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorjason2024-07-16 22:11:29 -0600
committerjason2024-07-16 22:11:29 -0600
commitffc2159dab43e2a6a7c327b8272b64823289a706 (patch)
treeb40918865b4f23359ad1085d7cb60aa9f0c6d67e /bash
parent187fe3185d4c30fb41c5819dfecaed8feec59649 (diff)
downloaddotfiles-ffc2159dab43e2a6a7c327b8272b64823289a706.tar.gz
dotfiles-ffc2159dab43e2a6a7c327b8272b64823289a706.zip
disable kerl fix for osx. it is not broken, and paste doesnt work
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc4
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
54KERL=`which kerl 2> /dev/null` 54KERL=`which kerl 2> /dev/null`
55if [ -x "$KERL" ]; then 55if [ -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