mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
10 lines
216 B
Text
Executable file
10 lines
216 B
Text
Executable file
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
|