mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
cc78541714
[web] cdn_upload: compress assets prior to uploading them to GCS GitOrigin-RevId: a9b0970beb124d20bd2ffe21d30a674ffafd6258
14 lines
325 B
Bash
Executable file
14 lines
325 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e -o pipefail
|
|
|
|
SCRIPT_PATH=$(realpath "${BASH_SOURCE[0]}")
|
|
SCRIPT_DIR=$(dirname "$SCRIPT_PATH")
|
|
|
|
pushd /tmp
|
|
|
|
find public/ -type d | sed 's!^!compressed/!' | xargs mkdir --parents
|
|
|
|
find public/ -type f -print0 \
|
|
| xargs --null --max-args 20 --max-procs 10 "$SCRIPT_DIR/compress_batch_of_assets"
|
|
|
|
popd
|