fix script
This commit is contained in:
parent
fa19ef08d5
commit
e566aa42bc
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue