parent
935a90262c
commit
94d8fcf42c
2 changed files with 2 additions and 7 deletions
|
@ -35,11 +35,9 @@ for mod in glob.glob("pack/mods/*.toml"):
|
||||||
if moddata["name"] in cache:
|
if moddata["name"] in cache:
|
||||||
data = cache[id]
|
data = cache[id]
|
||||||
else:
|
else:
|
||||||
|
print("Not in cache:" + id)
|
||||||
data = requests.get("https://api.modrinth.com/v2/project/" + id).json()["license"]
|
data = requests.get("https://api.modrinth.com/v2/project/" + id).json()["license"]
|
||||||
cache[id] = data
|
cache[id] = data
|
||||||
|
|
||||||
print(data)
|
|
||||||
exit
|
|
||||||
elif "curseforge" in data["update"]:
|
elif "curseforge" in data["update"]:
|
||||||
moddata["url"] = "https://legacy.curseforge.com/projects/" + str(data["update"]["curseforge"]["project-id"])
|
moddata["url"] = "https://legacy.curseforge.com/projects/" + str(data["update"]["curseforge"]["project-id"])
|
||||||
moddata["site"] = "CurseForge"
|
moddata["site"] = "CurseForge"
|
||||||
|
@ -100,6 +98,7 @@ with open("wiki/Modlist.md", "w") as f:
|
||||||
with open("wiki/Licenses.md", "w") as f:
|
with open("wiki/Licenses.md", "w") as f:
|
||||||
for mod in mods:
|
for mod in mods:
|
||||||
data = mods[mod]
|
data = mods[mod]
|
||||||
|
print(data)
|
||||||
f.write("## " + mod + "\r\n")
|
f.write("## " + mod + "\r\n")
|
||||||
f.write("<b>")
|
f.write("<b>")
|
||||||
if "license" in data:
|
if "license" in data:
|
||||||
|
|
|
@ -4,10 +4,6 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "[TEMP] Add cache"
|
|
||||||
run: |
|
|
||||||
mkdir cache
|
|
||||||
|
|
||||||
- name: "Clone modpack"
|
- name: "Clone modpack"
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue