From 97f543dc454a07f324a440e75ade865794abc46d Mon Sep 17 00:00:00 2001 From: Foxlet Date: Mon, 3 Jun 2019 15:58:00 -0400 Subject: [PATCH] [TOOLS] macOS Catalina support. --- tools/FetchMacOS/fetch-macos.py | 8 ++++---- tools/FetchMacOS/fetch.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/FetchMacOS/fetch-macos.py b/tools/FetchMacOS/fetch-macos.py index 132d8cb..df5d4b1 100755 --- a/tools/FetchMacOS/fetch-macos.py +++ b/tools/FetchMacOS/fetch-macos.py @@ -51,10 +51,10 @@ class Filesystem: class SoftwareService: # macOS 10.14 ships in 4 different catalogs from SoftwareScan - catalogs = {"CustomerSeed":"https://swscan.apple.com/content/catalogs/others/index-10.14customerseed-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog", - "DeveloperSeed":"https://swscan.apple.com/content/catalogs/others/index-10.14seed-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog", - "PublicSeed":"https://swscan.apple.com/content/catalogs/others/index-10.14beta-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog", - "PublicRelease":"https://swscan.apple.com/content/catalogs/others/index-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog"} + catalogs = {"CustomerSeed":"https://swscan.apple.com/content/catalogs/others/index-10.15customerseed-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog", + "DeveloperSeed":"https://swscan.apple.com/content/catalogs/others/index-10.15seed-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog", + "PublicSeed":"https://swscan.apple.com/content/catalogs/others/index-10.15beta-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog", + "PublicRelease":"https://swscan.apple.com/content/catalogs/others/index-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog"} def __init__(self, catalog_id): self.catalog_url = self.catalogs.get(catalog_id, self.catalogs["PublicRelease"]) diff --git a/tools/FetchMacOS/fetch.sh b/tools/FetchMacOS/fetch.sh index a05ecea..49c3eb0 100755 --- a/tools/FetchMacOS/fetch.sh +++ b/tools/FetchMacOS/fetch.sh @@ -3,5 +3,5 @@ SCRIPTDIR="$(dirname "$0")"; cd $SCRIPTDIR sudo easy_install pip sudo -H pip install -r requirements.txt -python fetch-macos.py -p 091-95155 +python fetch-macos.py -p 041-71284 -c DeveloperSeed exit;