diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-08-11 19:55:33 -0500 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-08-11 19:55:33 -0500 |
commit | 2d8e9b82ae8f9d9d556b66d142ae1bc327947351 (patch) | |
tree | 9e2913b2044a2b1e2b08f46026302471746a1a0b /install | |
parent | dc05afff4c07b812ae2219c3d4e30247f93845b0 (diff) |
update redirects in install script
Diffstat (limited to 'install')
-rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |