Skip to content

Commit f10e0d5

Browse files
committed
added some changes to path in .profile
1 parent f352304 commit f10e0d5

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.profile

+10-6
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,16 @@
99
#umask 022
1010

1111
# if running bash
12-
#if [ -n "$BASH_VERSION" ]; then
13-
## include .bashrc if it exists
14-
#if [ -f "$HOME/.bashrc" ]; then
15-
#. "$HOME/.bashrc"
16-
#fi
17-
#fi
12+
if [ -n "$BASH_VERSION" ]; then
13+
# include .bashrc if it exists
14+
if [ -f "$HOME/.bashrc" ]; then
15+
. "$HOME/.bashrc"
16+
fi
17+
fi
18+
19+
if [ -d "/var/lib/gems/1.8/bin" ] ; then
20+
PATH="/var/lib/gems/1.8/bin:$PATH"
21+
fi
1822

1923
# set PATH so it includes user's private bin if it exists
2024
if [ -d "$HOME/bin" ] ; then

0 commit comments

Comments
 (0)