mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
13 lines
281 B
Text
13 lines
281 B
Text
if [ -d "${HOME}/.commonsh" ] ; then
|
|
for file in "${HOME}"/.commonsh/* ; do
|
|
. "${file}"
|
|
done
|
|
fi
|
|
|
|
if [ -d "${HOME}/.sh" ] ; then
|
|
for file in "${HOME}"/.sh/* ; do
|
|
. "${file}"
|
|
done
|
|
fi
|
|
|
|
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
|