From 8dfa691a6c5de3edee0d35ac08959deffc221088 Mon Sep 17 00:00:00 2001 From: Fabian Date: Mon, 20 Jan 2014 16:45:29 +0100 Subject: [PATCH] Made make_symlinks more verbose. --- make_symlinks.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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