mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 22:50:51 +10:00
Fix Integrity typo
Thanks to @J-Human
This commit is contained in:
+1
-1
@@ -7,5 +7,5 @@ Install_macOS_Big_Sur_11_2_3 = {
|
|||||||
"Link": "https://archive.org/download/install-assistant-20D91/InstallAssistant.pkg",
|
"Link": "https://archive.org/download/install-assistant-20D91/InstallAssistant.pkg",
|
||||||
"Size": 12211077798,
|
"Size": 12211077798,
|
||||||
"Source": "Archive.org",
|
"Source": "Archive.org",
|
||||||
"integirty": None,
|
"integrity": None,
|
||||||
}
|
}
|
||||||
@@ -90,7 +90,7 @@ def list_downloadable_macOS_installers(download_path, catalog):
|
|||||||
if "InstallAssistant.pkg" in ia_package["URL"]:
|
if "InstallAssistant.pkg" in ia_package["URL"]:
|
||||||
download_link = ia_package["URL"]
|
download_link = ia_package["URL"]
|
||||||
size = ia_package["Size"]
|
size = ia_package["Size"]
|
||||||
integirty = ia_package["IntegrityDataURL"]
|
integrity = ia_package["IntegrityDataURL"]
|
||||||
|
|
||||||
avalible_apps.update({
|
avalible_apps.update({
|
||||||
item: {
|
item: {
|
||||||
@@ -98,7 +98,7 @@ def list_downloadable_macOS_installers(download_path, catalog):
|
|||||||
"Build": build,
|
"Build": build,
|
||||||
"Link": download_link,
|
"Link": download_link,
|
||||||
"Size": size,
|
"Size": size,
|
||||||
"integirty": integirty,
|
"integrity": integrity,
|
||||||
"Source": "Apple Inc.",
|
"Source": "Apple Inc.",
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user