update redirects in install script

This commit is contained in:
Jacob Janzen 2024-08-11 19:55:33 -05:00
parent dc05afff4c
commit 2d8e9b82ae

View file

@ -35,7 +35,7 @@ find -L -- . -type f -name "*\.org" | while read -r file; do
done
find -L -- . -type f -name "*\.org\.gpg" | while read -r file; do
echo " installing $file..."
gpg -d "$file" > tmp.org
gpg -d "$file" 1> tmp.org 2>> ~/.update-home.log
emacs --batch tmp.org -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log 2>&1
rm tmp.org
done