mirror of
https://git.acl.cool/al/pages.git
synced 2025-12-15 20:11:17 -05:00
fixed bash sets making rms cause build failure
This commit is contained in:
parent
b48dc428ee
commit
0154ca11e9
3 changed files with 14 additions and 3 deletions
4
build.sh
4
build.sh
|
|
@ -11,7 +11,7 @@ if ! [[ -d pgvv/ ]]; then
|
|||
fi
|
||||
|
||||
function soup_config {
|
||||
rm soupault.toml
|
||||
rm soupault.toml || true
|
||||
cp ../soupault.toml soupault.toml
|
||||
cat soupault.frag*.toml >>soupault.toml
|
||||
}
|
||||
|
|
@ -72,7 +72,7 @@ for font in fonts/PlaywriteUSA/*.ttf; do
|
|||
rm "$subset_ttf"
|
||||
done
|
||||
|
||||
rm css/code.css
|
||||
rm css/code.css || true
|
||||
pygmentize -f html -S algol_nu | grep -v 'line-height' >css/code.css
|
||||
|
||||
# The stuff below should be all or nothing, so we exit if something returns non-zero
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue