Skip to content

Instantly share code, notes, and snippets.

@ykzts
Created August 31, 2017 10:03
Show Gist options
  • Save ykzts/0191631fd377ab614aa8a4c4e62f8ae1 to your computer and use it in GitHub Desktop.
Save ykzts/0191631fd377ab614aa8a4c4e62f8ae1 to your computer and use it in GitHub Desktop.
#!/bin/sh
for f in $(find public/packs -name *.js -or -name *.css -type f); do
if [ ! -f ${f}.br ]; then
brotli --quality 10 --input ${f} --output ${f}.br
chmod 644 ${f}.br
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment