diff --git a/make_symlinks.sh b/make_symlinks.sh index 5aaf3f6..b4670c9 100755 --- a/make_symlinks.sh +++ b/make_symlinks.sh @@ -1,7 +1,7 @@ #!/bin/bash -test -f ../.zshrc || ln -s .dotfiles/zshrc ../.zshrc -test -f ../.zsh_functions || ln -s .dotfiles/zsh_functions ../.zsh_functions -test -f ../.vimrc || ln -s .dotfiles/vimrc ../.vimrc -test -f ../.gitconfig || ln -s .dotfiles/gitconfig ../.gitconfig -test -f ../.globalgitignore || ln -s .dotfiles/globalgitignore ../.globalgitignore +test -f ../.zshrc || ln -sv .dotfiles/zshrc ../.zshrc +test -f ../.zsh_functions || ln -sv .dotfiles/zsh_functions ../.zsh_functions +test -f ../.vimrc || ln -sv .dotfiles/vimrc ../.vimrc +test -f ../.gitconfig || ln -sv .dotfiles/gitconfig ../.gitconfig +test -f ../.globalgitignore || ln -sv .dotfiles/globalgitignore ../.globalgitignore