Fix pathing maybe

This commit is contained in:
Ben Kreeger 2023-06-28 16:50:39 +00:00 committed by GitHub
parent 3a356028a3
commit fe95ae5197
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,6 @@ declare -a dotfiles=("gemrc" "gitconfig" "gitignore.global")
for file in "${dotfiles[@]}"
do
if [[ ! -a "$HOME/.$file" ]]; then
ln -sfv $HOME/.dotfiles/.$file $HOME/.$file
ln -sfv ./.$file $HOME/.$file
fi
done