add bin/ install to installer
This commit is contained in:
parent
44480115c3
commit
4d2ea52a69
4 changed files with 54 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue