matrix.grapheneos.org/process-static

27 lines
602 B
Plaintext
Raw Normal View History

#!/bin/bash
set -o errexit -o nounset -o pipefail
shopt -s dotglob extglob globstar
export PATH="$PWD/node_modules/.bin:$PATH"
rm -rf static-tmp
cp -a /usr/share/webapps/element static-tmp
cp --remove-destination webapps/element/config.json static-tmp/config.json
cp nginx/nginx.conf nginx.conf.tmp
2021-07-21 21:19:03 +00:00
brotli_k() {
brotli -k "$@"
}
export -f brotli_k
2021-11-23 23:28:10 +00:00
zopfli_preserve_time() {
zopfli "$1"
touch -r "$1" "$1.gz"
}
export -f zopfli_preserve_time
2021-11-24 01:06:54 +00:00
find static-tmp -regex '.+\.\(css\|html\|ico\|js\|json\|map\|svg\|txt\|wasm\|xml\)' |
2021-11-23 23:28:10 +00:00
parallel -q ::: brotli_k zopfli_preserve_time :::: -