Skip to content

Commit dda77f3

Browse files
committed
fetch.py: Target only 15.0 for now
1 parent 2955039 commit dda77f3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/patch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
concurrency:
1111
cancel-in-progress: true
12-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
12+
group: ${{ github.workflow }}
1313

1414
jobs:
1515
build:

metal_libraries/ipsw/fetch.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ def _fetch_apple_db_items(self) -> dict:
5959
except packaging.version.InvalidVersion:
6060
continue
6161

62+
# Skip 15.1 temporarily
63+
if item["version"].split(" ")[0] == "15.1":
64+
continue
65+
6266
name = "macOS"
6367
if "appledbWebImage" in item:
6468
if "id" in item["appledbWebImage"]:

0 commit comments

Comments
 (0)