mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
10 lines
226 B
Text
Executable file
10 lines
226 B
Text
Executable file
local dev_path;
|
|
case `uname -s` in
|
|
Darwin)
|
|
dev_path=/Developer/usr
|
|
if [[ -r $dev_path ]] ; then
|
|
export PATH="${dev_path}/bin:${dev_path}/sbin:${PATH}"
|
|
export MANPATH="${dev_path}/share/man":$(manpath)
|
|
fi
|
|
;;
|
|
esac
|