This repository was archived by the owner on Apr 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22import mirrors
33import os
44import install
5+ import updatelist
56
6- # credits to chatgpt for helping building this, i was seriously lost
7- # keep this comment forever.
7+ # there was a credit to chatgpt, but i later found out i just had bad configs
88
99def parse_versions (data ):
1010 result = {}
@@ -20,6 +20,7 @@ def main():
2020
2121 versions_full = ""
2222 for i in mirrors .versions_places :
23+ print (f"Fetching { i } " )
2324 os .system (f"curl -s -L -o /tmp/versions { i } " )
2425 with open ("/tmp/versions" , "r" ) as f :
2526 versions = f .read ()
@@ -36,8 +37,10 @@ def main():
3637 if pkg in local_versions and local_versions [pkg ] != ver :
3738 needs_update .append (pkg )
3839
40+ updatelist .main ()
41+
3942 if needs_update :
40- print ( needs_update )
43+ pass
4144 else :
4245 status ("System up-to-date." , "ok" )
4346
You can’t perform that action at this time.
0 commit comments