Skip to content

Commit

Permalink
bash: How has .bash_profile never been tracked?
Browse files Browse the repository at this point in the history
  • Loading branch information
ches committed Feb 2, 2013
1 parent 895cb45 commit 202d1ab
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .bash_profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# ~/.bash_profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

#umask 022

# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=~/bin:"${PATH}"
fi

# -- start rip config -- #
RIPDIR=/Users/ches/.rip
RUBYLIB="$RUBYLIB:$RIPDIR/active/lib"
PATH="$PATH:$RIPDIR/active/bin"
export RIPDIR RUBYLIB PATH
# -- end rip config -- #

0 comments on commit 202d1ab

Please sign in to comment.