14 lines
189 B
Text
14 lines
189 B
Text
|
#!/usr/bin/env zsh
|
||
|
# vim:ft=zsh:
|
||
|
# Eryn Wells <eryn@erynwells.me>
|
||
|
|
||
|
function append_to_path
|
||
|
{
|
||
|
if [[ -d "$1" ]]; then
|
||
|
path+="$1"
|
||
|
export path
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
append_to_path "$@"
|