mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
cb26956bca
- I forgot to compress xhtml files. fix that. - Stylistic change: remove unnecessary brace expansions - Don't repeatedly append to a file; run commands in a different scope and write all at once. Move Nu HTML validator filtering into a shell script: - Return a bad exit code if validation errors are found after filtering - Remove null-ish values from the JSON output; the final output *should* be an empty string, since nothing should be reported.
20 lines
499 B
Bash
20 lines
499 B
Bash
#!/bin/sh
|
|
|
|
# takes three args:
|
|
# 1. output dir
|
|
# 2. "gzip" or "brotli"
|
|
# 3. ECT zopfli compression level
|
|
|
|
set -e -u
|
|
|
|
output_dir="$1"
|
|
format="$2"
|
|
|
|
alias find_compressible='find "$output_dir" -type f \( -name "*.html" -o -name "*.xhtml" -o -name "*.xml" -o -name "*.webmanifest" -o -name "*.*.svg" \)'
|
|
|
|
if [ "$format" = "gzip" ]; then
|
|
compress_level="$3"
|
|
find_compressible -exec ect -quiet -"$compress_level" -gzip {} \;
|
|
elif [ "$2" = "brotli" ]; then
|
|
find_compressible -exec brotli -Z -- {} \;
|
|
fi
|