aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-10 00:11:09 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-10 00:11:09 -0500
commit35f4e161d5ba2c2757dd3d8f2c38c0380d004b2f (patch)
treebbe98d08a0b13d542d5f590b649a727e0b3800c1 /install
parentfee1f337a9f0b776c8d38c26415936725a7f9bd9 (diff)
follow symlinks
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index 0bc3134..db0c194 100755
--- a/install
+++ b/install
@@ -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