Dotfiles/.zsh/lib/path.zsh
2014-05-12 18:59:57 +02:00

13 lines
228 B
Bash

typeset -U path
pathdirs=(
~/Coding/Stellaris/gcc-arm-none-eabi-4_8-2014q1/bin \
~/Coding/Stellaris/lm4tools/lm4flash \
~/arm-coding/openocd-bin
)
for dir in $pathdirs; do
if [ -d $dir ]; then
path+=$dir
fi
done