Skip to content
Snippets Groups Projects
Commit 204fcc2e authored by David Hrbáč's avatar David Hrbáč
Browse files

Check version with master

parent 897e5502
No related branches found
No related tags found
No related merge requests found
......@@ -9,9 +9,15 @@ response = Faraday.get "https://release-monitoring.org/api/projects/?pattern=#{A
fedora_j = JSON.parse( response.body )['projects']
fedora = fedora_j.select { |h| h['name'] == ARGV[0].downcase }.first['version']
response = Faraday.get "https://docs.it4i.cz/devel/52-module-matrix-json-export/modules-matrix.json"
response = Faraday.get "https://docs.it4i.cz/modules-matrix.json"
it4i = JSON.parse( response.body )['projects'][ARGV[0]]
it4i_short = it4i.split('-')[0]
puts "IT4Innovations: #{it4i_short} (#{it4i})"
puts "Upstream : #{fedora}"
if it4i_short.eql? fedora
puts "Identical"
else
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment