follow symlinks

This commit is contained in:
Jacob Janzen 2024-08-10 00:11:09 -05:00
parent fee1f337a9
commit 35f4e161d5

View file

@ -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