Fix Integrity typo

Thanks to @J-Human
This commit is contained in:
Mykola Grymalyuk
2021-11-05 23:24:13 -06:00
parent b42169f980
commit 6689817872
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,5 +7,5 @@ Install_macOS_Big_Sur_11_2_3 = {
"Link": "https://archive.org/download/install-assistant-20D91/InstallAssistant.pkg",
"Size": 12211077798,
"Source": "Archive.org",
"integirty": None,
"integrity": None,
}
+2 -2
View File
@@ -90,7 +90,7 @@ def list_downloadable_macOS_installers(download_path, catalog):
if "InstallAssistant.pkg" in ia_package["URL"]:
download_link = ia_package["URL"]
size = ia_package["Size"]
integirty = ia_package["IntegrityDataURL"]
integrity = ia_package["IntegrityDataURL"]
avalible_apps.update({
item: {
@@ -98,7 +98,7 @@ def list_downloadable_macOS_installers(download_path, catalog):
"Build": build,
"Link": download_link,
"Size": size,
"integirty": integirty,
"integrity": integrity,
"Source": "Apple Inc.",
}
})