aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Linskey2026-05-05 14:59:45 -0400
committerBenjamin Linskey2026-05-05 15:30:44 -0400
commitb420cfd9b3142672a4ccd8cb7d416f987fa0cb62 (patch)
tree473505b0ecd8084d94d190a21f830f4421a786fa
parentbb98302817cc327a567f05b4bf83127054a0d162 (diff)
downloaddotfiles-b420cfd9b3142672a4ccd8cb7d416f987fa0cb62.tar.gz

Wrap a long line in makefile

-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 674e781..e20c4ce 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,8 @@
.PHONY: install
install:
rm -f "$$HOME"/.bash_profile
- find "$$PWD" -depth 1 -name '.*' -not -name .DS_Store -not -name .gitignore -exec ln -sf {} "$$HOME" \;
+ find "$$PWD" -depth 1 -name '.*' -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