23 lines
371 B
Bash
Executable file
23 lines
371 B
Bash
Executable file
#!/bin/bash
|
|
|
|
./deps.sh
|
|
|
|
function soup_config {
|
|
rm soupault.toml
|
|
cp ../soupault.toml soupault.toml
|
|
cat soupault.toml.frag* >> soupault.toml
|
|
}
|
|
|
|
rm css/code.css
|
|
pygmentize -f html -S algol_nu | grep -v 'line-height' > css/code.css
|
|
|
|
builtin pushd acl.cool
|
|
rm -rf serve/
|
|
soup_config
|
|
soupault
|
|
popd
|
|
builtin pushd ytheleus.org
|
|
rm -rf serve/
|
|
soup_config
|
|
soupault
|
|
popd
|