mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2025-01-09 15:02:58 +01:00
[script] update get links
This commit is contained in:
parent
7dcfd8daf6
commit
3a59d88e80
8
.github/osia_get_links.rb
vendored
8
.github/osia_get_links.rb
vendored
@ -10,7 +10,13 @@ end
|
||||
j = get_json
|
||||
a = j['projects']
|
||||
archived = apps_archived a
|
||||
links = a.reject { |x| archived.include? x }.map { |y| y['source']}
|
||||
active = a.reject { |x| archived.include? x }
|
||||
|
||||
links = []
|
||||
active.each do |z|
|
||||
links.push z['source']
|
||||
links.push z['itunes'] unless z['itunes'].nil?
|
||||
end
|
||||
|
||||
links.each_with_index { |z, i| puts "#{i+1} #{z}" }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user