mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-21 05:43:42 +00:00
added source file for mac dev stuff
This commit is contained in:
parent
dcb2a1787c
commit
78f4d11631
1 changed files with 10 additions and 0 deletions
10
zsh/macdev
Executable file
10
zsh/macdev
Executable file
|
@ -0,0 +1,10 @@
|
|||
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
|
Loading…
Add table
Reference in a new issue