From 3e2954c67e5e83c525e5ef67a58c8db39eb089eb Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Fri, 16 Dec 2016 08:50:15 -0500 Subject: [PATCH] added python3.5 binpath to path --- .../root/etc/skel/Library/bashrc.d/150.python-bin-path.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/custompkg/root/etc/skel/Library/bashrc.d/150.python-bin-path.sh b/custompkg/root/etc/skel/Library/bashrc.d/150.python-bin-path.sh index 416bd98..19c4201 100644 --- a/custompkg/root/etc/skel/Library/bashrc.d/150.python-bin-path.sh +++ b/custompkg/root/etc/skel/Library/bashrc.d/150.python-bin-path.sh @@ -1,3 +1,7 @@ if [[ -e $HOME/Library/Python/2.7/bin ]]; then PATH+=":$HOME/Library/Python/2.7/bin" fi + +if [[ -e $HOME/Library/Python/3.5/bin ]]; then + PATH+=":$HOME/Library/Python/3.5/bin" +fi