10 lines
186 B
Plaintext
10 lines
186 B
Plaintext
|
function zshlibs_path_add()
|
||
|
{
|
||
|
local pathtoadd="${1}"
|
||
|
zshlibs_log $0 "adding path '$pathtoadd' to \$PATH"
|
||
|
if [[ ! ${path[(r)${pathtoadd}]} ]]
|
||
|
then
|
||
|
path+=(${pathtoadd})
|
||
|
fi
|
||
|
}
|