From 7983259f180d77d96158aa1402dfdd956efda3f9 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 1 Jul 2015 10:10:25 -0700 Subject: [PATCH] Fix addition of ~/.lib/python to PYTHONPATH by using $HOME variable. --- dotfiles/lib/shellenv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/lib/shellenv.sh b/dotfiles/lib/shellenv.sh index 3afcdaeb..533422ef 100644 --- a/dotfiles/lib/shellenv.sh +++ b/dotfiles/lib/shellenv.sh @@ -51,7 +51,7 @@ export NVM_DIR="/Users/imalison/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm export NODE_PATH="/usr/local/lib/node_modules/" -add_to_front_of_path "~/.lib/python" 'PYTHONPATH' +add_to_front_of_path "$HOME/.lib/python" 'PYTHONPATH' export RBENV_ROOT=/usr/local/var/rbenv add_to_front_of_path "$HOME/.rbenv/bin"