Fix pathing maybe for real

This commit is contained in:
Ben Kreeger 2023-06-28 11:57:59 -05:00 committed by GitHub
parent fe95ae5197
commit 176987185a
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 ./.$file $HOME/.$file
ln -sfv .$file $HOME/.$file
fi
done