diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-10 00:11:09 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-10 00:11:09 -0500 |
commit | 35f4e161d5ba2c2757dd3d8f2c38c0380d004b2f (patch) | |
tree | bbe98d08a0b13d542d5f590b649a727e0b3800c1 /install | |
parent | fee1f337a9f0b776c8d38c26415936725a7f9bd9 (diff) |
follow symlinks
Diffstat (limited to 'install')
-rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ else fi echo 'installing configuration files...' -find -- . -type f -name "*.org" | while read -r file; do +find -L -- . -type f -name "*.org" | while read -r file; do echo " installing $file..." emacs --batch "$file" -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log 2>&1 done |