Sfoglia il codice sorgente

Don't expand dotfile symlinks in install.sh

Frans Bergman 4 anni fa
parent
commit
89a6b3e1b5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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()