diff options
| author | Benjamin Linskey | 2026-05-06 00:50:57 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-06 00:50:57 -0400 |
| commit | 393f7d75b1ab29762232e3eee38a07a55ca0e459 (patch) | |
| tree | d58d45c44522fdec56af07808674dbebf612a302 | |
| parent | f03777be3858c674ddc1e77a71ef3446b9743808 (diff) | |
| download | dotfiles-393f7d75b1ab29762232e3eee38a07a55ca0e459.tar.gz | |
Don’t symlink .git
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ .PHONY: install install: rm -f "$$HOME"/.bash_profile - find "$$PWD" -depth 1 -name '.*' -not -name .DS_Store \ + find "$$PWD" -depth 1 -name '.*' -not -name .git -not -name .DS_Store \ -not -name .gitignore -exec ln -sf {} "$$HOME" \; # Regenerate Vim help tags. if type vim >/dev/null 2>&1; then vim -e -s -u NONE -c 'helptags ALL' -c q; fi |