diff options
| author | Benjamin Linskey | 2026-05-05 14:59:45 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-05 15:30:44 -0400 |
| commit | b420cfd9b3142672a4ccd8cb7d416f987fa0cb62 (patch) | |
| tree | 473505b0ecd8084d94d190a21f830f4421a786fa | |
| parent | bb98302817cc327a567f05b4bf83127054a0d162 (diff) | |
| download | dotfiles-b420cfd9b3142672a4ccd8cb7d416f987fa0cb62.tar.gz | |
Wrap a long line in makefile
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |