From 4cdb6d82dff5241e084570c905ba89bd9724014c Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Wed, 8 Feb 2017 23:19:37 -0500 Subject: [PATCH] Update 150.python-bin-path.sh --- .../root/etc/skel/Library/bashrc.d/150.python-bin-path.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 19c4201..941a576 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 @@ -2,6 +2,6 @@ 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" +if [[ -e $HOME/Library/Python/3.6/bin ]]; then + PATH+=":$HOME/Library/Python/3.6/bin" fi