Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit e3bc36c

Browse files
committed
fix Big Sur Software Catalog URL
1 parent 6fc3c1d commit e3bc36c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

FetchInstallerPkg.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@
373373
CODE_SIGN_IDENTITY = "Apple Development";
374374
CODE_SIGN_STYLE = Automatic;
375375
COMBINE_HIDPI_IMAGES = YES;
376-
CURRENT_PROJECT_VERSION = 29;
376+
CURRENT_PROJECT_VERSION = 30;
377377
DEVELOPMENT_ASSET_PATHS = "\"FetchInstallerPkg/Preview Content\"";
378378
DEVELOPMENT_TEAM = JME5BW3F3R;
379379
ENABLE_APP_SANDBOX = YES;
@@ -410,7 +410,7 @@
410410
CODE_SIGN_IDENTITY = "Apple Development";
411411
CODE_SIGN_STYLE = Automatic;
412412
COMBINE_HIDPI_IMAGES = YES;
413-
CURRENT_PROJECT_VERSION = 29;
413+
CURRENT_PROJECT_VERSION = 30;
414414
DEVELOPMENT_ASSET_PATHS = "\"FetchInstallerPkg/Preview Content\"";
415415
DEVELOPMENT_TEAM = JME5BW3F3R;
416416
ENABLE_APP_SANDBOX = YES;

FetchInstallerPkg/Model/SeedProgram.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ func defaultCatalog() -> URL? {
2222

2323
var catalog = ""
2424
switch majorVersion {
25-
default:
25+
case 11:
2626
catalog = "https://swscan.apple.com/content/catalogs/others/index-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog"
27-
// default:
28-
// catalog = "https://swscan.apple.com/content/catalogs/others/index-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog"
27+
default:
28+
catalog = "https://swscan.apple.com/content/catalogs/others/index-12-10.16-10.15-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog"
2929
}
3030

3131
return URL(string: catalog)

0 commit comments

Comments
 (0)