add bin/ install to installer

This commit is contained in:
Mark Riedesel 2019-07-19 16:16:54 -05:00
parent 44480115c3
commit 4d2ea52a69
4 changed files with 54 additions and 1 deletions

View file

@ -129,6 +129,15 @@ for path in _config/*; do
link $basedir/_config/$path $homedir/.config/${path}
done
note "Installing bin/ directory..."
mkdir -v -p $bindir
if [ -d _bin ]; then
for path in _bin/*; do
relpath=${path##*/}
link $basedir/$path $bindir/$relpath
done
fi
note "Done."
# vim:ts=4:sw=4:et: