Normalisation et nettoyage #4

Open
xavier wants to merge 14 commits from dev into master
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 6e01d0308e - Show all commits
+4 -4
View File
@@ -1,6 +1,6 @@
# Customize PATH
if [ -d "${HOME}/.bin" ] ; then export PATH="${PATH}:${HOME}/.bin" ; fi
if [ -d "${HOME}/.local/bin" ] ; then export PATH="${PATH}:${HOME}/.local/bin" ; fi
_path_add "${HOME}/.bin"
_path_add "${HOME}/.local/bin"
if [ -d "${HOME}/bin" ] ; then export PATH="${PATH}:${HOME}/bin" ; fi
if [ -d "${HOME}/scripts" ] ; then export PATH="${PATH}:${HOME}/scripts" ; fi
_path_add "${HOME}/bin"
_path_add "${HOME}/scripts"
+1 -1
View File
@@ -5,4 +5,4 @@
[[ -r "${HOME}/.rvm/scripts/completion" ]] && source "${HOME}/.rvm/scripts/completion"
# Add RVM to PATH for scripting
[[ -r "${HOME}/.rvm/bin" ]] && PATH="${PATH}:${HOME}/.rvm/bin"
[[ -r "${HOME}/.rvm/bin" ]] && _path_add "${HOME}/.rvm/bin"