| 1 | import check_latest_versions |
| 2 | import modules.version_manipulation as ndvm |
| 3 | import sys |
| 4 | |
| 5 | if __name__ == "__main__": |
| 6 | channel = sys.argv[1] |
| 7 | sorted_agents_by_major = ndvm.sort_and_grouby_major_agents_of_channel(channel) |
| 8 | latest_per_major = [values[0] for values in sorted_agents_by_major.values()] |
| 9 | check_latest_versions.main(latest_per_major) |