17 lines
253 B
Bash
Executable file
17 lines
253 B
Bash
Executable file
#!/bin/sh
|
|
|
|
function soup_config {
|
|
cat ../soupault.toml > soupault.toml
|
|
cat soupault.toml.frag* >> soupault.toml
|
|
}
|
|
|
|
builtin pushd acl.cool
|
|
rm -rf serve/
|
|
soup_config
|
|
soupault
|
|
popd
|
|
builtin pushd ytheleus.org
|
|
rm -rf serve/
|
|
soup_config
|
|
soupault
|
|
popd
|