Explorar el Código

Don't expand dotfile symlinks in install.sh

Frans Bergman hace 4 años
padre
commit
89a6b3e1b5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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()