mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
11 lines
216 B
Text
11 lines
216 B
Text
![]() |
local dev_path;
|
||
|
case `uname -s` in
|
||
|
Darwin)
|
||
|
dev_path=/Developer/usr
|
||
|
if [[ -r $dev_path ]] ; then
|
||
|
export PATH=$PATH:$dev_path/bin:$dev_path/sbin
|
||
|
export MANPATH=`manpath -c`:$dev_path/share/man
|
||
|
fi
|
||
|
;;
|
||
|
esac
|