Correct set-links.sh

Configured a wrong path for zsh-files in set-links.sh - forgot the zsh/
subfolder. This commit brings the needed changes.
This commit is contained in:
c47 2024-02-19 06:43:40 +01:00
parent 8c7af67d01
commit 9c38cd7801

View file

@ -58,9 +58,9 @@ if [[ ! -d ${HOME}/.zsh ]]; then
fi
if [[ ! -L ${HOME}/.zshenv ]]; then
ln -s ${WORKING_DIR}/zshenv .zshenv 2>/dev/null
ln -s ${WORKING_DIR}/zsh/zshenv .zshenv 2>/dev/null
fi
if [[ ! -L ${HOME}/.zshrc ]]; then
ln -s ${WORKING_DIR}/zshrc .zshrc 2>/dev/null
ln -s ${WORKING_DIR}/zsh/zshrc .zsh/.zshrc 2>/dev/null
fi