fix script

This commit is contained in:
Jacob Janzen 2024-08-08 17:05:03 -05:00
parent fa19ef08d5
commit e566aa42bc
2 changed files with 3 additions and 2 deletions

View file

@ -8,9 +8,9 @@ sources:
- https://git.sr.ht/~jjanzen/blog
tasks:
- build: |
emacs --batch -f package-initialize --script ~/website/publish.el
cd ~/.dotfiles
./fix-dotfile-paths.sh
~/website/fix-dotfile-paths.sh
emacs --batch -f package-initialize --script ~/website/publish.el
- package: |
cd ~/public_html/
tar -cvz . > ../site.tar.gz

View file

@ -1,5 +1,6 @@
#!/bin/sh
cd ~/.dotfiles || exit
START=$(pwd)
find -- . -type d | sed '/^\.\$/d' | sed '/^\.\/\.git\//d' | sed '/^\.\/.git/d' | while read -r line; do
cd "${line}" || continue