Dotfiles/.zsh/lib/path.zsh

14 lines
228 B
Bash
Raw Normal View History

2014-04-16 21:50:26 +02:00
typeset -U path
pathdirs=(
2014-05-12 18:59:57 +02:00
~/Coding/Stellaris/gcc-arm-none-eabi-4_8-2014q1/bin \
~/Coding/Stellaris/lm4tools/lm4flash \
2014-04-16 21:50:26 +02:00
~/arm-coding/openocd-bin
)
for dir in $pathdirs; do
if [ -d $dir ]; then
path+=$dir
fi
done