9 lines
145 B
Plaintext
9 lines
145 B
Plaintext
function global_path_expand()
|
|
{
|
|
local bin_base=${1}/bin
|
|
shift
|
|
for pathnew in ${*}; do
|
|
zshlibs_path_add "${bin_base}/${pathnew}"
|
|
done;
|
|
}
|