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
|
- https://git.sr.ht/~jjanzen/blog
|
||||||
tasks:
|
tasks:
|
||||||
- build: |
|
- build: |
|
||||||
emacs --batch -f package-initialize --script ~/website/publish.el
|
|
||||||
cd ~/.dotfiles
|
cd ~/.dotfiles
|
||||||
./fix-dotfile-paths.sh
|
~/website/fix-dotfile-paths.sh
|
||||||
|
emacs --batch -f package-initialize --script ~/website/publish.el
|
||||||
- package: |
|
- package: |
|
||||||
cd ~/public_html/
|
cd ~/public_html/
|
||||||
tar -cvz . > ../site.tar.gz
|
tar -cvz . > ../site.tar.gz
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
cd ~/.dotfiles || exit
|
||||||
START=$(pwd)
|
START=$(pwd)
|
||||||
find -- . -type d | sed '/^\.\$/d' | sed '/^\.\/\.git\//d' | sed '/^\.\/.git/d' | while read -r line; do
|
find -- . -type d | sed '/^\.\$/d' | sed '/^\.\/\.git\//d' | sed '/^\.\/.git/d' | while read -r line; do
|
||||||
cd "${line}" || continue
|
cd "${line}" || continue
|
||||||
|
|
Loading…
Add table
Reference in a new issue