From 48ddc29db14596de11cc2b497798d5c7b7a0ef49 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 31 May 2024 15:41:43 +0200 Subject: [PATCH] install.sh: make sure ~/bin exists --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index cddea7a..0837fe5 100755 --- a/install.sh +++ b/install.sh @@ -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