diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-08 17:07:35 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-08 17:07:35 -0500 |
commit | 57667f82145277920ddacf59bf57c0046129bd63 (patch) | |
tree | 61dbee1960ab39bd69a1da0010c9f78b4fe6659d /install | |
parent | 545dfbb53f2bb6d7669ca7bfd1f4775a9150b530 (diff) |
move configs to hidden directories
Diffstat (limited to 'install')
-rw-r--r-- | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ if ! diff ~/.dotfiles/install ~/.local/bin/update-home >> ~/.update-home.log; th fi echo Installing configuration files... -find -- * -type f -name "*.org" | while read -r file; do +find -- . -type f -name "*.org" | while read -r file; do emacs --batch "${file}" -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log done |