From 5278b9f5c7cf4e31eef4a4c619e10be5141cd325 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Fri, 26 Sep 2014 20:04:25 +0200 Subject: [PATCH] adding custom bin directory --- .bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bashrc b/.bashrc index 3de3aa3..9fa970f 100644 --- a/.bashrc +++ b/.bashrc @@ -26,6 +26,11 @@ if [ -d "$HOME/.gem/ruby" ]; then done fi +# Custom bin directory +if [ -d "$HOME/bin" ]; then + export PATH="$PATH:$HOME/bin" +fi + # OS OS_TYPE=$(echo "$OSTYPE" | sed 's/\([a-zA-Z_\-]*\).*/\1/g')