1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

install.sh: make sure ~/bin exists

This commit is contained in:
Henrik Hautakoski 2024-05-31 15:41:43 +02:00
parent 4e3a280578
commit 48ddc29db1

View file

@ -20,6 +20,7 @@ done
ln -sfr $BASE_PATH/tmux.conf $HOME/.tmux.conf
ln -sfr $BASE_PATH/Xresources $HOME/.Xresources
mkdir -p $HOME/bin
for script in $(find $BASE_PATH/scripts -type f); do
ln -sfr $script $HOME/bin/$(basename $script)
done