ソースを参照

Don't expand dotfile symlinks in install.sh

Frans Bergman 4 年 前
コミット
89a6b3e1b5
1 ファイル変更1 行追加1 行削除
  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()