From 2fbdca54a64b0a1833c33d1b3b8ce1b5acdf33f3 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Mon, 6 Jan 2020 11:46:03 -0500 Subject: [PATCH] fix darwin compat --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 2fd4db7..797fe0a 100644 --- a/.bashrc +++ b/.bashrc @@ -1,6 +1,6 @@ test -f /etc/bashrc && . /etc/bashrc || true test -f /etc/bash_completion && . /etc/bash_completion || true -test -f /usr/local/etc/bash_completion && . "/usr/local/etc/bash_completion" || true +[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh" test -f $HOME/.bash_aliases && . $HOME/.bash_aliases || true export MINIKUBE_WANTUPDATENOTIFICATION=true