1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2025-02-03 20:07:39 +01:00

[script] Correct total of App Store apps

This commit is contained in:
Daniel Khamsing 2017-06-21 09:35:19 -07:00
parent 1cb66559bd
commit 86ff851741

View File

@ -33,9 +33,9 @@ end
def app_store_total(j)
apps = j['projects']
s = apps.select { |x| x['itunes'].nil? }
s = apps.reject { |x| x['itunes'].nil? }
count = 1
count = 1
s.each do |x|
tags = x['tags']
if tags.nil?