Przeglądaj źródła

Don't expand dotfile symlinks in install.sh

Frans Bergman 4 lat temu
rodzic
commit
89a6b3e1b5
1 zmienionych plików z 1 dodań i 1 usunięć
  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()