From 5dcd2cf0d26e627b472be1b359a2777aed9958ca Mon Sep 17 00:00:00 2001 From: joe fleming Date: Thu, 31 May 2018 16:29:37 -0700 Subject: [PATCH] fix: remove brew stuff mac only :( --- bash/bash_profile | 4 ---- install.sh | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/bash/bash_profile b/bash/bash_profile index bb57ada..4ec04ee 100644 --- a/bash/bash_profile +++ b/bash/bash_profile @@ -65,10 +65,6 @@ function parse_git_branch { return } -if [ -f `brew --prefix`/etc/bash_completion ]; then - . `brew --prefix`/etc/bash_completion -fi - export TERM="xterm-color" alias ls="ls -G" export PS1="$PURPLE\u@\h$WHITE:$BLUE\w$YELLOW\$(parse_git_branch)$WHITE\$ " diff --git a/install.sh b/install.sh index e0a9eaf..924cbf0 100755 --- a/install.sh +++ b/install.sh @@ -31,7 +31,7 @@ fi mkdir -p "${HOME}/bin" "${HOME}/.bash_aliases.d" "${HOME}/.bash_completion.d" "${HOME}/.bash_functions.d" cd "${ROOT}/bash/bash_magic/bash_aliases.d"; -for i in color refresh git less brew dev sublime top; do cp "${i}.sh" "${HOME}/.bash_aliases.d"; done +for i in color refresh git less dev sublime top; do cp "${i}.sh" "${HOME}/.bash_aliases.d"; done cd "${ROOT}/bash/bash_magic/bash_completion.d"; for i in etc; do cp "${i}.sh" "${HOME}/.bash_completion.d"; done cd "${ROOT}/bash/bash_magic/bash_functions.d";