mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 23:00:08 +02:00

[web] cdn_upload: compress assets prior to uploading them to GCS GitOrigin-RevId: a9b0970beb124d20bd2ffe21d30a674ffafd6258
16 lines
302 B
Bash
Executable file
16 lines
302 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
for file in "$@"; do
|
|
file_gzipped="compressed/$file"
|
|
|
|
gzip -9 --no-name --stdout "$file" > "$file_gzipped"
|
|
|
|
before=$(stat -c%s "$file")
|
|
after=$(stat -c%s "$file_gzipped")
|
|
if [[ "$after" -ge "$before" ]]; then
|
|
rm "$file_gzipped"
|
|
else
|
|
rm "$file"
|
|
fi
|
|
done
|