From 63f62b4ec6bf27b61e3758e95fcd347e2ecc9fa5 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Sun, 13 Mar 2016 21:30:52 -0700 Subject: [PATCH] Revert "Move /etc/bashrc include to be more friendly for OS X" This reverts commit 3a1472ef48fe320cfb27dc02ab624c8011e2d3a5. --- bashrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bashrc b/bashrc index 020d66f..1694985 100644 --- a/bashrc +++ b/bashrc @@ -1,10 +1,6 @@ # If not running interactively, don't do anything [ -z "$PS1" ] && return -if [ -f /etc/bashrc ]; then - source /etc/bashrc -fi - if [ -f ~/.bash/environment ]; then source ~/.bash/environment fi @@ -43,3 +39,7 @@ fi if [ -f /opt/local/etc/profile.d/bash_completion.sh ]; then source /opt/local/etc/profile.d/bash_completion.sh fi + +if [ -f /etc/bashrc ]; then + source /etc/bashrc +fi