Try fixing jq format in minifying index (#13)

This commit is contained in:
stevenyomi 2024-01-09 17:56:52 +08:00 committed by GitHub
parent a075482f83
commit 3bee73e3f6

View File

@ -61,6 +61,6 @@ for APK in ${APKS[@]}; do
done | jq -sr '[.[]]' > index.json
# Alternate minified copy
jq -c 'map(del(.hasReadme, .hasChangelog, .sources.[]["versionId", "hasCloudflare"]))' < index.json > index.min.json
jq -c 'map(del(.hasReadme, .hasChangelog, .sources.[].versionId, .sources.[].hasCloudflare))' < index.json > index.min.json
cat index.json