8 lines
259 B
Bash
Executable file
8 lines
259 B
Bash
Executable file
#!/bin/bash
|
|
rm -r public/
|
|
hugo
|
|
#shopt -s globstar
|
|
#tidy -mq public/**/*.html
|
|
#npx prettier@3.3.3 "public/**/*.html" --parser html --write
|
|
#npx prettier@3.3.3 "public/**/*.json" --parser json --write
|
|
rsync -avz --delete public/ a@trwnh.com:/srv/http/trwnh.com
|