diff --git a/install.sh b/install.sh index 1912695..3e11e57 100755 --- a/install.sh +++ b/install.sh @@ -8,8 +8,9 @@ create_symlink() { local source=$1 local target=$2 - if [ -ne "$target" ]; then + if [ ! -e "$target" ]; then ln -s "$source" "$target" + echo "Added symlink $source -> $target" fi }