Skip to content

Commit d54130f

Browse files
committed
manifest.py: Remove tmp hacks
1 parent 26a1fb2 commit d54130f

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

metal_libraries/cli.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,6 @@ def build_pkg(input: str, pkg_signing_identity: str = None, notarization_team_id
8888
"""
8989
Builds a macOS package from a given directory
9090
"""
91-
import logging
92-
logging.basicConfig(
93-
level=logging.INFO,
94-
format="[%(asctime)s] [%(filename)-22s] [%(levelname)-8s] [%(lineno)-3d]: %(message)s",
95-
handlers=[logging.StreamHandler()]
96-
)
9791

9892
name = Path(input).name
9993
assert macos_pkg_builder.Packages(

metal_libraries/ipsw/manifest.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ def update_manifest(self) -> None:
7676
# Add new item
7777
current_manifest.append(data)
7878

79-
# Temp hack: Fix '24A5327a' missing 'version' property
80-
# Set to '15.0'
81-
for item in current_manifest:
82-
if item["build"] == "24A5327a":
83-
item["version"] = "15.0"
84-
8579
# Sort by date
8680
current_manifest = sorted(current_manifest, key=lambda x: datetime.strptime(x["date"], "%Y-%m-%d"), reverse=True)
8781

0 commit comments

Comments
 (0)