From 108beaaaa55de92846f63aa1a0e69b7075b422ed Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Mon, 28 Oct 2013 21:11:50 +0000 Subject: [PATCH] kinda need this bash profile huh --- .bash_profile | 3 +++ install.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .bash_profile diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..d8b5cf3 --- /dev/null +++ b/.bash_profile @@ -0,0 +1,3 @@ +if [[ -f "$HOME/.bashrc" ]]; then + source "$HOME/.bashrc" +fi diff --git a/install.sh b/install.sh index 156a2c9..849e697 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ BACKUP_DIR="$HOME/.dotfiles_backup" BASE_DIR="$HOME/.dotfiles" -INCLUDE=".bashrc .vimrc .vim" +INCLUDE=".bashrc .bash_profiles .vimrc .vim" echo "backing up existing dotfiles into $BACKUP_DIR" mkdir -p "$BACKUP_DIR"