Change set-links.sh accordingly to b1a03cb2df

In commit b1a03cb2df ~/.gitconfig got moved to ~/.config/git/config,
but set-links.sh didn't got updated. This commit makes up for it.
This commit is contained in:
c47 2024-02-19 06:38:02 +01:00
parent 5f57445802
commit 8c7af67d01

View file

@ -18,9 +18,9 @@ for config in ${WORKING_DIR}/bash/*; do
fi
done
# Gitconfig
if [[ ! -L ${HOME}/.gitconfig ]]; then
ln -s ${WORKING_DIR}/gitconfig .gitconfig 2>/dev/null
# Git
if [[ ! -L ${HOME}/.config/git ]]; then
ln -s ${WORKING_DIR}/git/ .config/git 2>/dev/null
fi