mirror of
https://github.com/GrapheneOS/matrix.grapheneos.org.git
synced 2024-12-18 20:34:39 -05:00
16 lines
463 B
Bash
Executable File
16 lines
463 B
Bash
Executable File
#!/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
|
|
|
|
find static_tmp -regex '.+\.\(css\|html\|ico\|js\|json\|map\|svg\|txt\|webmanifest\|xml\|wasm\)' |
|
|
parallel "brotli -k {}; zopfli {} && touch -r {} {}.gz"
|