aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Linskey2026-05-06 00:50:57 -0400
committerBenjamin Linskey2026-05-06 00:50:57 -0400
commit393f7d75b1ab29762232e3eee38a07a55ca0e459 (patch)
treed58d45c44522fdec56af07808674dbebf612a302
parentf03777be3858c674ddc1e77a71ef3446b9743808 (diff)
downloaddotfiles-393f7d75b1ab29762232e3eee38a07a55ca0e459.tar.gz

Don’t symlink .git

-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e20c4ce..a6449ef 100644
--- a/Makefile
+++ b/Makefile
@@ -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