Gzip build output files in update_metadata.sh instead of update_metadata.yml.

This commit is contained in:
Aaron Dodson
2021-07-14 10:58:08 -07:00
parent 1fd4b9bb21
commit 8d33869a4a
2 changed files with 3 additions and 6 deletions

View File

@@ -3,6 +3,9 @@
# Determines the size of generated files and updates check_metadata.sh to
# reflect the new values.
gzip -k build/blockly_compressed.js
gzip -k build/blocks_compressed.js
blockly_size=$(wc -c < "build/blockly_compressed.js")
blocks_size=$(wc -c < "build/blocks_compressed.js")
blockly_gz_size=$(wc -c < "build/blockly_compressed.js.gz")