Skip to content

Commit bb39d6a

Browse files
committed
Added repository file for vcmi-1.7
1 parent b7c1eff commit bb39d6a

File tree

2 files changed

+1022
-1
lines changed

2 files changed

+1022
-1
lines changed

.github/update_size.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
print(f"Opening: {filename}")
1212
filecontent = open(filename, "r").read()
1313
modlist = json.loads(filecontent)
14-
for mod, data in modlist.items():
14+
for mod, data in modlist.items() if 'availableMods' not in modlist else modlist["availableMods"].items():
1515
url = data["download"].replace(" ", "%20")
1616
print(f"Download {mod}: {url}")
1717
try:

0 commit comments

Comments
 (0)