Browse Source

Don't expand dotfile symlinks in install.sh

Frans Bergman 4 years ago
parent
commit
89a6b3e1b5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      install.sh

+ 1 - 1
install.sh

@@ -13,7 +13,7 @@ do
         .git) continue ;;
         *.swp) continue ;;
     esac
-    ln -s "$(realpath "$f")" ~/
+    ln -s "$(realpath --no-symlinks "$f")" ~/
 done
 
 prompt()