Output minified repo JSON as well

This commit is contained in:
arkon 2020-11-29 15:44:17 -05:00
parent 93afbc3c15
commit e29f20c981
1 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,9 @@ for APK in ${APKS[@]}; do
done | jq -sr '[.[]]' > index.json
# Alternate minified copy
cat index.json | jq -scr '.' > index.min.json
# Alternate gzipped copy
gzip -c index.json > index.json.gz