From 666fd12e2f0867a57568de284fe30ae578116773 Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Mon, 3 Oct 2022 01:48:13 +0200 Subject: deploy.sh: don't create symlink inside directory --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deploy.sh') diff --git a/deploy.sh b/deploy.sh index 632c61c..7253067 100755 --- a/deploy.sh +++ b/deploy.sh @@ -6,7 +6,7 @@ CONFIG_DIR=${HOME}/config ln -sf ${CONFIG_DIR}/bashrc ${HOME}/.bashrc -ln -sf ${CONFIG_DIR}/vim ${HOME}/.vim +ln -sfT ${CONFIG_DIR}/vim ${HOME}/.vim ln -sf ${CONFIG_DIR}/vimrc ${HOME}/.vimrc ln -sf ${CONFIG_DIR}/inputrc ${HOME}/.inputrc @@ -15,7 +15,7 @@ ln -sf ${CONFIG_DIR}/screenrc ${HOME}/.screenrc ln -sf ${CONFIG_DIR}/git/gitconfig ${HOME}/.gitconfig mkdir -p ${HOME}/.git_template -ln -sf ${CONFIG_DIR}/git/hooks ${HOME}/.git_template/hooks +ln -sfT ${CONFIG_DIR}/git/hooks ${HOME}/.git_template/hooks mkdir -p ${HOME}/.mutt ln -sf ${CONFIG_DIR}/muttrc ${HOME}/.mutt/muttrc -- cgit v1.2.3