From dfc42a02101ad31eecc63807b76732052d3f7704 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Fri, 7 Oct 2016 21:11:47 -0400 Subject: [PATCH] now actually puts python bins in path --- .../root/etc/skel/Library/bashrc.d/150.python-bin-path.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 custompkg/root/etc/skel/Library/bashrc.d/150.python-bin-path.sh 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 new file mode 100644 index 0000000..416bd98 --- /dev/null +++ b/custompkg/root/etc/skel/Library/bashrc.d/150.python-bin-path.sh @@ -0,0 +1,3 @@ +if [[ -e $HOME/Library/Python/2.7/bin ]]; then + PATH+=":$HOME/Library/Python/2.7/bin" +fi